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
177 def foo(self): pass # abstract member in test_factory.TestABC.test_abstractmethod_integration.C
188 def foo(self): pass member in test_factory.TestABC.test_abstractmethod_integration.E
203 def foo(self): return 3 member in test_factory.TestABC.test_descriptors_with_abstractmethod.C
206 def foo(self, val): pass member in test_factory.TestABC.test_descriptors_with_abstractmethod.C
210 def foo(self): return super().foo member in test_factory.TestABC.test_descriptors_with_abstractmethod.D
214 def foo(self, val): pass member in test_factory.TestABC.test_descriptors_with_abstractmethod.E
227 foo = property(bar) variable in test_factory.TestABC.test_descriptors_with_abstractmethod.F
246 def foo(self): return 3 member in test_factory.TestABC.test_customdescriptors_with_abstractmethod.C
249 def foo(self, val): pass member in test_factory.TestABC.test_customdescriptors_with_abstractmethod.C
253 def foo(self): return super().foo member in test_factory.TestABC.test_customdescriptors_with_abstractmethod.D
257 def foo(self, val): pass member in test_factory.TestABC.test_customdescriptors_with_abstractmethod.E
472 foo = 42 variable in test_factory.TestABC.test_subclasshook.B
512 def foo(self): member in test_factory.TestABC.test_update_del.A
544 def foo(self): member in test_factory.TestABC.test_update_implementation.A
564 def foo(self): member in test_factory.TestABC.test_update_as_decorator.A
595 def foo(self): member in test_factory.TestABC.test_update_del_implementation.A
599 def foo(self): member in test_factory.TestABC.test_update_del_implementation.B
614 def foo(self): member in test_factory.TestABC.test_update_layered_implementation.A
621 def foo(self): member in test_factory.TestABC.test_update_layered_implementation.C
636 def foo(self): member in test_factory.TestABC.test_update_multi_inheritance.A
640 def foo(self): member in test_factory.TestABC.test_update_multi_inheritance.B
645 def foo(self): member in test_factory.TestABC.test_update_multi_inheritance.C