1# test __name__ on generator functions 2 3def Fun(): 4 yield 5 6class A: 7 def Fun(self): 8 yield 9 10try: 11 print(Fun.__name__) 12 print(A.Fun.__name__) 13 print(A().Fun.__name__) 14except AttributeError: 15 print('SKIP') 16 raise SystemExit 17