Home
last modified time | relevance | path

Searched defs:spam (Results 1 - 18 of 18) sorted by relevance

/third_party/python/Lib/test/test_import/data/circular_imports/
H A Dsource.py2 spam = 1 variable
/third_party/python/Lib/test/
H A Dtest_frozen.py35 import __phello__.spam as spam namespace
47 import __phello__.spam as spam namespace
[all...]
H A Dinspect_fodder.py8 def spam(a, /, b, c, d=3, e=4, f=5, *g, **h): function
H A Dtest_rlcompleter.py8 spam = 1 variable in CompleteMe
H A Dtest_symtable.py58 spam = find_block(top, "spam") variable in SymtableTest
[all...]
H A Dtest_pkg.py127 from t2.sub.subsub import spam namespace
[all...]
H A Dtest_property.py25 def spam(self): member in BaseClass
30 def spam(self, value): member in BaseClass
34 def spam(self): member in BaseClass
40 def spam(self): member in SubClass
45 def spam(self, value): member in SubClass
49 def spam(self): global() member in SubClass
56 spam = property(_get_spam, doc="spam spam spam") global() variable in PropertyDocBase
60 def spam(self): global() member in PropertyDocSub
66 def spam(self): global() member in PropertySubNewGetter
72 def spam(self): global() member in PropertyNewGetter
76 def spam(self): global() member in PropertyNewGetter
168 def spam(self): global() member in PropertyTests.test_property_decorator_doc_writable.PropertyWritableDoc
249 def spam(self): global() member in PropertySubclassTests.test_slots_docstring_copy_exception.Foo
262 def spam(self): global() member in PropertySubclassTests.test_docstring_copy.Foo
275 def spam(self): global() member in PropertySubclassTests.test_property_setter_copies_getter_docstring.Foo
279 def spam(self, value): global() member in PropertySubclassTests.test_property_setter_copies_getter_docstring.Foo
291 def spam(self, value): global() member in PropertySubclassTests.test_property_setter_copies_getter_docstring.FooSub
308 def spam(self): global() member in PropertySubclassTests.test_property_new_getter_new_docstring.Foo
312 def spam(self): global() member in PropertySubclassTests.test_property_new_getter_new_docstring.Foo
318 def spam(self): global() member in PropertySubclassTests.test_property_new_getter_new_docstring.FooBase
323 def spam(self): global() member in PropertySubclassTests.test_property_new_getter_new_docstring.Foo2
[all...]
H A Dtest_yield_from.py968 def spam(g): global() function
[all...]
H A Dtest_dynamicclassattribute.py26 def spam(self): member in BaseClass
31 def spam(self, value): member in BaseClass
35 def spam(self): member in BaseClass
40 spam = BaseClass.__dict__['spam'] variable in SubClass
43 def spam(self): member in SubClass
48 def spam(self, value): global() member in SubClass
52 def spam(self): global() member in SubClass
59 spam = DynamicClassAttribute(_get_spam, doc="spam spam spam") global() variable in PropertyDocBase
62 spam = PropertyDocBase.__dict__['spam'] global() variable in PropertyDocSub
64 def spam(self): global() member in PropertyDocSub
69 spam = BaseClass.__dict__['spam'] global() variable in PropertySubNewGetter
71 def spam(self): global() member in PropertySubNewGetter
77 def spam(self): global() member in PropertyNewGetter
81 def spam(self): global() member in PropertyNewGetter
215 def spam(self): global() member in PropertySubclassTests.test_slots_docstring_copy_exception.Foo
229 def spam(self): global() member in PropertySubclassTests.test_docstring_copy.Foo
242 def spam(self): global() member in PropertySubclassTests.test_property_setter_copies_getter_docstring.Foo
246 def spam(self, value): global() member in PropertySubclassTests.test_property_setter_copies_getter_docstring.Foo
257 spam = Foo.__dict__['spam'] global() variable in PropertySubclassTests.test_property_setter_copies_getter_docstring.FooSub
259 def spam(self, value): global() member in PropertySubclassTests.test_property_setter_copies_getter_docstring.FooSub
276 def spam(self): global() member in PropertySubclassTests.test_property_new_getter_new_docstring.Foo
280 def spam(self): global() member in PropertySubclassTests.test_property_new_getter_new_docstring.Foo
286 def spam(self): global() member in PropertySubclassTests.test_property_new_getter_new_docstring.FooBase
290 spam = FooBase.__dict__['spam'] global() variable in PropertySubclassTests.test_property_new_getter_new_docstring.Foo2
292 def spam(self): global() member in PropertySubclassTests.test_property_new_getter_new_docstring.Foo2
[all...]
H A Dtest_abc.py476 spam = 42 variable in test_factory.TestABC.test_subclasshook.C
H A Dtest_named_expressions.py282 def spam(a): global() function
290 def spam(a): global() function
375 def spam(a): global() function
382 def spam(a): global() function
402 def spam(a): global() function
415 def spam(a): global() function
447 def spam(a): global() function
456 def spam(a): global() function
465 def spam(a): global() function
474 def spam(a, b): global() function
483 def spam(a, b): global() function
492 def spam(a, b): global() function
502 def spam(): global() function
[all...]
H A Dtest_scope.py193 def spam(arg): function
218 def spam(arg): function
H A Dtest_iter.py335 def spam(state=[0]): function
343 def spam(state=[0]): function
362 def spam(): function
378 def spam(state=[0]): global() function
1048 def spam(state=[0]): global() function
[all...]
H A Dtest_patma.py3044 spam = 0 variable in TestTypeErrors.test_match_args_must_be_a_tuple_2.Class
H A Dtest_argparse.py5097 def spam(string): global() function
5175 def spam(string_to_convert): global() function
5191 def spam(int_to_convert): global() function
5202 def spam(int_to_convert): global() function
[all...]
H A Dtest_descr.py304 import copy, xxsubtype as spam namespace
307 import xxsubtype as spam namespace
348 import copy, xxsubtype as spam namespace
350 import xxsubtype as spam namespace
524 def spam(self): global() member in ClassPropertiesAndMethods.test_metaclass.C
903 def spam(self): return "A" global() member in ClassPropertiesAndMethods.test_diamond_inheritance.A
907 def spam(self): return "B" global() member in ClassPropertiesAndMethods.test_diamond_inheritance.B
1614 import xxsubtype as spam global() namespace
1697 import xxsubtype as spam global() namespace
[all...]
H A Dtest_inspect.py3354 def spam(b:int, a) -> float: pass global() function
[all...]
H A Dtest_enum.py302 def spam(cls): member in _EnumTests.test_attribute_deletion.Season
1007 spam = SpamEnumNotInner variable in TestSpecial.test_enum_of_types.SpamEnum
1111 spam = nonmember(SpamEnumIsInner) variable in TestSpecial.test_enum_of_types_with_nonmember.SpamEnum

Completed in 32 milliseconds