D | test_inspect.py | 939 def ham(x, y): function 942 self.assertArgSpecEquals(ham, ['x', 'y'], formatted='(x, y)') 943 self.assertFullArgSpecEquals(ham, ['x', 'y'], formatted='(x, y)') 944 self.assertFullArgSpecEquals(functools.partial(ham), 952 def ham(self, x, y): member in TestClassesAndFunctions.test_argspec_api_ignores_wrapped.C 954 pham = functools.partialmethod(ham) 959 check_method(C.ham) 960 check_method(C().ham) 1153 def ham(self): member in TestClassesAndFunctions.test_classify_DynamicClassAttribute.VA 2375 def test(a, b:'foo'=10, *args:'bar', spam:'baz', ham=123, **kwargs:int): argument [all …]
|