mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 04:37:32 +07:00
13 lines
184 B
Python
13 lines
184 B
Python
class OldStyle:
|
|
pass
|
|
|
|
class NewStyle(object):
|
|
pass
|
|
|
|
x = OldStyle()
|
|
y = NewStyle()
|
|
print(OldStyle.__module__)
|
|
print(NewStyle.__module__)
|
|
print(x.__module__)
|
|
print(y.__module__)
|