We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2941d5c commit 90aa759Copy full SHA for 90aa759
1 file changed
tests/basics/fun_name.py
@@ -1,16 +1,16 @@
1
-def Fun():
2
- pass
3
-
4
-class A:
5
- def __init__(self):
6
7
- def Fun(self):
8
9
10
-try:
11
- print(Fun.__name__)
12
- print(A.__init__.__name__)
13
- print(A.Fun.__name__)
14
- print(A().Fun.__name__)
15
-except AttributeError:
16
- print('SKIP')
+def Fun():
+ pass
+
+class A:
+ def __init__(self):
+ def Fun(self):
+try:
+ print(Fun.__name__)
+ print(A.__init__.__name__)
+ print(A.Fun.__name__)
+ print(A().Fun.__name__)
+except AttributeError:
+ print('SKIP')
0 commit comments