test_ok1/py/path/extpy/testing/inc_test_extpy.py

19 lines
218 B
Python

from __future__ import generators
class A:
x1 = 42
def func(self):
pass
def genfunc(self):
yield 2
class B:
x2 = 23
class Nested:
class Class:
def borgfunc(self): pass