Lines Matching defs:func
219 def func(): pass
220 co = func.__code__
250 def func():
253 code = func.__code__
290 def func():
293 co = func.__code__
329 def func(arg):
331 code = func.__code__
332 newcode = code.replace(co_name="func") # Should not raise SystemError
336 def func():
338 new_code = code = func.__code__.replace(co_linetable=b'')
424 def func():
426 new_code = func.__code__.replace(co_linetable=b'')
650 def check_positions(self, func):
651 pos1 = list(func.__code__.co_positions())
652 pos2 = list(positions_from_location_table(func.__code__))
662 def check_lines(self, func):
663 co = func.__code__