Lines Matching defs:foo
20 def foo(self): pass function
27 def foo(self): return 3 member in test_factory.TestLegacyAPI.test_abstractproperty_basics.C
31 def foo(self): return super().foo member in test_factory.TestLegacyAPI.test_abstractproperty_basics.D
37 def foo(cls): pass function
45 def foo(cls): return cls.__name__ member in test_factory.TestLegacyAPI.test_abstractclassmethod_basics.C
49 def foo(cls): return super().foo() member in test_factory.TestLegacyAPI.test_abstractclassmethod_basics.D
55 def foo(): pass function
63 def foo(): return 3 member in test_factory.TestLegacyAPI.test_abstractstaticmethod_basics.C
67 def foo(): return 4 member in test_factory.TestLegacyAPI.test_abstractstaticmethod_basics.D
79 def foo(cls): return cls.__name__ member in test_factory.TestABC.test_ABC_helper.C
84 def foo(cls): return super().foo() member in test_factory.TestABC.test_ABC_helper.D
89 def foo(self): pass function
97 def foo(self): pass function
105 def foo(self): return 3 member in test_factory.TestABC.test_abstractproperty_basics.C
109 def foo(self): return super().foo member in test_factory.TestABC.test_abstractproperty_basics.D
115 def foo(cls): pass function
124 def foo(cls): return cls.__name__ member in test_factory.TestABC.test_abstractclassmethod_basics.C
128 def foo(cls): return super().foo() member in test_factory.TestABC.test_abstractclassmethod_basics.D
135 def foo(): pass function
144 def foo(): return 3 member in test_factory.TestABC.test_abstractstaticmethod_basics.C
148 def foo(): return 4 member in test_factory.TestABC.test_abstractstaticmethod_basics.D
158 def foo(self): pass # abstract member in test_factory.TestABC.test_abstractmethod_integration.C
169 def foo(self): pass member in test_factory.TestABC.test_abstractmethod_integration.E
184 def foo(self): return 3 member in test_factory.TestABC.test_descriptors_with_abstractmethod.C
187 def foo(self, val): pass member in test_factory.TestABC.test_descriptors_with_abstractmethod.C
191 def foo(self): return super().foo member in test_factory.TestABC.test_descriptors_with_abstractmethod.D
195 def foo(self, val): pass member in test_factory.TestABC.test_descriptors_with_abstractmethod.E
208 foo = property(bar) variable in test_factory.TestABC.test_descriptors_with_abstractmethod.F
227 def foo(self): return 3 member in test_factory.TestABC.test_customdescriptors_with_abstractmethod.C
230 def foo(self, val): pass member in test_factory.TestABC.test_customdescriptors_with_abstractmethod.C
234 def foo(self): return super().foo member in test_factory.TestABC.test_customdescriptors_with_abstractmethod.D
238 def foo(self, val): pass member in test_factory.TestABC.test_customdescriptors_with_abstractmethod.E