Lines Matching refs:b
14 b = (1, 2)
20 h = b'a'
25 k = a + b
28 m = a == b == c
29 m = not (a == b and b == c)
32 n = b.c
33 b.c = n
36 p = b[0]
37 b[0] = p
38 b[0] += p
41 a = b[::]
44 a, b = c
48 a, b = b, a
49 a, b, c = c, b, a
60 a = (b for c in d if e)
61 a = [b for c in d if e]
62 a = {b:b for c in d if e}
67 a(b=1)
68 a(*b)
71 a.b()
72 a.b(1)
73 a.b(c=1)
74 a.b(*c)
82 b
84 b
88 for a in b:
96 b
107 b
118 from a import b
139 def f(b=2): argument
140 return b + a