D | test_inspect.py | 781 def ham(x, y): function 784 self.assertArgSpecEquals(ham, ['x', 'y'], formatted='(x, y)') 785 self.assertFullArgSpecEquals(ham, ['x', 'y'], formatted='(x, y)') 786 self.assertFullArgSpecEquals(functools.partial(ham), 794 def ham(self, x, y): member in TestClassesAndFunctions.test_argspec_api_ignores_wrapped.C 796 pham = functools.partialmethod(ham) 801 check_method(C.ham) 802 check_method(C().ham) 995 def ham(self): member in TestClassesAndFunctions.test_classify_DynamicClassAttribute.VA 2061 def test(a, b:'foo'=10, *args:'bar', spam:'baz', ham=123, **kwargs:int): argument [all …]
|