pep8: Move to third_party/.
[Samba.git] / third_party / pep8 / testsuite / E20.py
blob2f1ecc28c9263c8ed42c1f30ef5ab534c2e94868
1 #: E201:1:6
2 spam( ham[1], {eggs: 2})
3 #: E201:1:10
4 spam(ham[ 1], {eggs: 2})
5 #: E201:1:15
6 spam(ham[1], { eggs: 2})
7 #: Okay
8 spam(ham[1], {eggs: 2})
9 #:
12 #: E202:1:23
13 spam(ham[1], {eggs: 2} )
14 #: E202:1:22
15 spam(ham[1], {eggs: 2 })
16 #: E202:1:11
17 spam(ham[1 ], {eggs: 2})
18 #: Okay
19 spam(ham[1], {eggs: 2})
21 result = func(
22 arg1='some value',
23 arg2='another value',
26 result = func(
27 arg1='some value',
28 arg2='another value'
31 result = [
32 item for item in items
33 if item > 5
38 #: E203:1:10
39 if x == 4 :
40 print x, y
41 x, y = y, x
42 #: E203:2:15 E702:2:16
43 if x == 4:
44 print x, y ; x, y = y, x
45 #: E203:3:13
46 if x == 4:
47 print x, y
48 x, y = y , x
49 #: Okay
50 if x == 4:
51 print x, y
52 x, y = y, x
53 a[b1, :] == a[b1, ...]
54 b = a[:, b1]