/third_party/python/Lib/test/ |
D | test_property.py | 25 def spam(self): member in BaseClass 29 @spam.setter 30 def spam(self, value): member in BaseClass 33 @spam.deleter 34 def spam(self): member in BaseClass 39 @BaseClass.spam.getter 40 def spam(self): member in SubClass 44 @spam.setter 45 def spam(self, value): member in SubClass 48 @spam.deleter [all …]
|
D | test_dynamicclassattribute.py | 26 def spam(self): member in BaseClass 30 @spam.setter 31 def spam(self, value): member in BaseClass 34 @spam.deleter 35 def spam(self): member in BaseClass 40 spam = BaseClass.__dict__['spam'] variable in SubClass 42 @spam.getter 43 def spam(self): member in SubClass 47 @spam.setter 48 def spam(self, value): member in SubClass [all …]
|
D | test_symtable.py | 58 spam = find_block(top, "spam") variable in SymtableTest 59 internal = find_block(spam, "internal") 60 other_internal = find_block(spam, "other_internal") 67 self.assertEqual(self.spam.get_type(), "function") 74 self.assertGreater(self.spam.get_id(), 0) 80 self.assertTrue(self.spam.is_optimized()) 85 self.assertFalse(self.spam.is_nested()) 95 self.assertEqual(self.spam.get_lineno(), 14) 98 func = self.spam 106 self.assertTrue(self.spam.lookup("glob").is_global()) [all …]
|
D | test_named_expressions.py | 267 if spam := "eggs": 268 self.assertEqual(spam, "eggs") 272 if True and (spam := True): 273 self.assertTrue(spam) 282 def spam(a): function 285 res = [(x, y, x/y) for x in input_data if (y := spam(x)) > 0] 290 def spam(a): function 292 res = [[y := spam(x), x/y] for x in range(1, 5)] 375 def spam(a): function 377 res = [[y := spam(x), x/y] for x in range(1, 5)] [all …]
|
D | test_argparse.py | 1238 ('a', NS(spam='a')), 1239 ('g', NS(spam='g')), 1249 ('4', NS(spam=4)), 1250 ('15', NS(spam=15)), 1263 ('a b c', NS(spam=['a', ['b', 'c']])), 1593 ('foo', NS(x=None, spam=RFile('foo'))), 1594 ('-x foo bar', NS(x=RFile('foo'), spam=RFile('bar'))), 1595 ('bar -x foo', NS(x=RFile('foo'), spam=RFile('bar'))), 1596 ('-x - -', NS(x=eq_stdin, spam=eq_stdin)), 1597 ('readonly', NS(x=None, spam=RFile('readonly'))), [all …]
|
D | test_types.py | 1624 del ns1.spam 1626 del ns2.spam 1635 ns1.spam = 5 1636 self.assertEqual(vars(ns1), dict(spam=5)) 1637 del ns1.spam 1663 ns2.spam = ns1 1665 ns2.spam = ns3 1668 self.assertEqual(vars(ns2), dict(spam=ns3, ham='?')) 1669 self.assertEqual(ns2.spam, ns3) 1677 ns1.spam = ns1 [all …]
|
D | inspect_fodder.py | 8 def spam(a, /, b, c, d=3, e=4, f=5, *g, **h): function 43 spam(a, b, c)
|
D | tokenize_tests.txt | 111 """ + R'''spam 129 """ + bR'''spam 133 """ + Rb'''spam
|
D | test_smtpd.py | 723 spam = self.channel._SMTPChannel__server 727 spam = self.channel._SMTPChannel__line 731 spam = self.channel._SMTPChannel__state 735 spam = self.channel._SMTPChannel__greeting 739 spam = self.channel._SMTPChannel__mailfrom 743 spam = self.channel._SMTPChannel__rcpttos 747 spam = self.channel._SMTPChannel__data 751 spam = self.channel._SMTPChannel__fqdn 755 spam = self.channel._SMTPChannel__peer 759 spam = self.channel._SMTPChannel__conn [all …]
|
D | test_iter.py | 253 def spam(state=[0]): function 257 self.check_iterator(iter(spam, 10), list(range(10)), pickle=False) 261 def spam(state=[0]): function 267 self.check_iterator(iter(spam, 20), list(range(10)), pickle=False) 271 def spam(state=[0]): function 279 for x in iter(spam, 20): 941 def spam(state=[0]): function 947 b = iter(spam, 5)
|
D | test_inspect.py | 241 self.assertTrue(inspect.isroutine(mod.spam)) 432 ('spam', mod.spam)]) 516 self.assertEqual(normcase(inspect.getsourcefile(mod.spam)), modfile) 892 self.assertArgSpecEquals(mod.spam, 938 @functools.wraps(mod.spam) 951 @functools.wraps(mod.spam) 955 @functools.wraps(mod.spam) 965 @functools.wraps(mod.spam) 971 @functools.wraps(mod.spam) 2050 self.spam = 42 [all …]
|
D | test_rlcompleter.py | 8 spam = 1 variable in CompleteMe 15 self.completer = rlcompleter.Completer(dict(spam=int,
|
/third_party/libwebsockets/minimal-examples/ws-client/minimal-ws-client-spam/ |
D | CMakeLists.txt | 1 project(lws-minimal-ws-client-spam C) 9 set(SAMP lws-minimal-ws-client-spam) 10 set(SRCS minimal-ws-client-spam.c) 72 …add_test(NAME ws-client-spam COMMAND lws-minimal-ws-client-spam --server localhost --port ${PORT_W… 73 set_tests_properties(ws-client-spam PROPERTIES 74 WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/minimal-examples/ws-client/minimal-ws-client-spam
|
D | README.md | 32 $ ./lws-minimal-ws-client-spam -c 20 -l 200 --server localhost --port 7681 36 $ ./lws-minimal-ws-client-spam
|
/third_party/parse5/test/data/parser-feedback/ |
D | tests12.test | 4 …</mtext><annotation-xml><svg><desc><b>eggs</b></desc><g><foreignObject><P>spam<TABLE><tr><td><img>… 5 …</mtext><annotation-xml><svg><desc><b>eggs</b></desc><g><foreignObject><P>spam<TABLE><tr><td><img>… 104 "spam" 174 …</mtext><annotation-xml><svg><desc><b>eggs</b></desc><g><foreignObject><P>spam<TABLE><tr><td><img>… 175 …</mtext><annotation-xml><svg><desc><b>eggs</b></desc><g><foreignObject><P>spam<TABLE><tr><td><img>… 269 "spam"
|
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-client-tx/ |
D | README.md | 4 "spam"... this is a websocket connection to libwebsockets.org. 29 [2021/02/19 11:25:20:8590] N: ++ [1100944|SSPcli|0|spam] (1) 30 …1:25:20:8810] N: ++ [1100944|wsiSSPcli|0|RAW/raw-skt/+@proxy.ss.lws/([1100944|SSPcli|0|spam])] (1) 31 …pc_sul_retry_cb: [1100944|wsiSSPcli|0|RAW/raw-skt/+@proxy.ss.lws/([1100944|SSPcli|0|spam|default])]
|
/third_party/python/Doc/extending/ |
D | windows.rst | 94 In Windows, using an import library is sort of like using ``import spam``; it 95 gives you access to spam's names, but does not create a separate copy. On Unix, 96 linking with a library is more like ``from spam import *``; it does create a 113 To build two DLLs, spam and ni (which uses C functions found in spam), you could 116 cl /LD /I/python/include spam.c ../libs/pythonXY.lib 117 cl /LD /I/python/include ni.c spam.lib ../libs/pythonXY.lib 119 The first command created three files: :file:`spam.obj`, :file:`spam.dll` and 120 :file:`spam.lib`. :file:`Spam.dll` does not contain any Python functions (such 125 which knows how to find the necessary functions from spam, and also from the
|
/third_party/node/test/parallel/ |
D | test-tls-client-renegotiation-limit.js | 71 const client = tls.connect(options, spam); 91 function spam() { function 96 spam();
|
D | test-https-client-renegotiation-limit.js | 97 spam(); 100 function spam() { function 104 setImmediate(spam);
|
/third_party/libwebsockets/minimal-examples/ws-client/minimal-ws-client-spam-tx-rx/ |
D | CMakeLists.txt | 1 project(lws-minimal-ws-client-spam-tx-rx C) 9 set(SAMP lws-minimal-ws-client-spam-tx-rx)
|
/third_party/python/Doc/library/ |
D | pprint.rst | 88 >>> stuff = ['spam', 'eggs', 'lumberjack', 'knights', 'ni'] 92 [ ['spam', 'eggs', 'lumberjack', 'knights', 'ni'], 93 'spam', 100 [['spam', 'eggs', 'lumberjack', 102 'spam', 'eggs', 'lumberjack', 'knights', 104 >>> tup = ('spam', ('eggs', ('lumberjack', ('knights', ('ni', ('dead', 108 ('spam', ('eggs', ('lumberjack', ('knights', ('ni', ('dead', (...))))))) 161 >>> stuff = ['spam', 'eggs', 'lumberjack', 'knights', 'ni'] 165 'spam', 199 "[<Recursion on list with id=...>, 'spam', 'eggs', 'lumberjack', 'knights', 'ni']"
|
D | contextvars.rst | 159 var.set('spam') 162 # 'var' was set to 'spam' before 164 # var.get() == ctx[var] == 'spam' 181 # However, outside of 'ctx', 'var' is still set to 'spam': 182 # var.get() == 'spam'
|
/third_party/python/Lib/test/test_import/data/circular_imports/ |
D | source.py | 2 spam = 1 variable
|
D | use.py | 2 source.spam
|
/third_party/python/Doc/tutorial/ |
D | classes.rst | 170 spam = "local spam" 173 nonlocal spam 174 spam = "nonlocal spam" 177 global spam 178 spam = "global spam" 180 spam = "test spam" 182 print("After local assignment:", spam) 184 print("After nonlocal assignment:", spam) 186 print("After global assignment:", spam) 189 print("In global scope:", spam) [all …]
|