Lines Matching refs:spam
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)]
382 def spam(a): function
385 res = [(x, y, x/y) for x in input_data if (y := spam(x)) > 0]
391 res = [[spam := i for i in range(3)] for j in range(2)]
394 self.assertEqual(spam, 2)
402 def spam(a): function
408 res = [spam(a := eggs(b := h)) for h in range(2)]
415 def spam(a): function
421 res = [spam(a := eggs(a := h)) for h in range(2)]
447 def spam(a): function
450 res = spam(b := 2)
456 def spam(a): function
459 res = spam((b := 2))
465 def spam(a): function
468 res = spam(a=(b := 2))
474 def spam(a, b): function
477 res = spam(c := 2, b=1)
483 def spam(a, b): function
486 res = spam((c := 2), b=1)
492 def spam(a, b): function
495 res = spam(b=(c := 2), a=1)
502 def spam(): function
505 spam()