mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-06 01:06:54 +07:00
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
8 lines
73 B
Python
8 lines
73 B
Python
def method():
|
|
return 42
|
|
|
|
|
|
class Outer:
|
|
class Inner:
|
|
pass
|