mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-25 18:25:37 +07:00
11 lines
126 B
Python
11 lines
126 B
Python
class C:
|
|
pass
|
|
|
|
def f(x):
|
|
x.__qualname__ #pass
|
|
|
|
C.__qualname__ #pass
|
|
c = C()
|
|
c.__qualname__ #pass
|
|
f.__qualname__ #pass
|