D | test_inspect.py | 852 def ham(x, y): function 855 self.assertArgSpecEquals(ham, ['x', 'y'], formatted='(x, y)') 856 self.assertFullArgSpecEquals(ham, ['x', 'y'], formatted='(x, y)') 857 self.assertFullArgSpecEquals(functools.partial(ham), 865 def ham(self, x, y): member in TestClassesAndFunctions.test_argspec_api_ignores_wrapped.C 867 pham = functools.partialmethod(ham) 872 check_method(C.ham) 873 check_method(C().ham) 1066 def ham(self): member in TestClassesAndFunctions.test_classify_DynamicClassAttribute.VA 2187 def test(a, b:'foo'=10, *args:'bar', spam:'baz', ham=123, **kwargs:int): argument [all …]
|