Files
openide/python/testData/quickFixes/PyMakeFunctionFromMethodQuickFixTest/innerClassMethod_after.py
Mikhail Golubev 3b6dea06a3 PY-21398 Wrap batch updates of existing usages in quickfixes with PotemkinProgress
It also fixes EA-425763 about using incorrect parent and anchor elements
to insert a function generated from a method of a nested class.

GitOrigin-RevId: f9b9da303396eb78c2c12b2750065dbdc0ba70ed
2022-02-17 09:28:34 +00:00

8 lines
73 B
Python

def method():
return 42
class Outer:
class Inner:
pass