Lines Matching defs:func2
3544 def func2(foo: Foo, bar: 'Bar') -> int: pass
3556 sig3 = signature_func(func2, globals={'Bar': int}, locals=locals())
4402 def func2():
4404 @functools.wraps(func2)
4407 func2.stop_here = 1
4410 self.assertIs(unwrapped, func2)
4418 def func2(): pass
4419 func2.__wrapped__ = func1
4420 func1.__wrapped__ = func2
4424 inspect.unwrap(func2)