mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-30 06:44:20 +07:00
IDEA-CR-68254 GitOrigin-RevId: aa76636854317e57a0225ab4a98114295777fa72
11 lines
128 B
Python
11 lines
128 B
Python
class Foo:
|
|
def method(self, arg):
|
|
pass
|
|
|
|
|
|
if undef:
|
|
Bar = Foo
|
|
else:
|
|
Bar = undef
|
|
|
|
Bar.method(Foo(), arg=undef) |