pep8: Move to third_party/.
[Samba.git] / third_party / pep8 / testsuite / E70.py
blob85ca66688f0c81a4a0ac8aada9c4f6ea57124f0d
1 #: E701:1:5
2 if a: a = False
3 #: E701:1:40
4 if not header or header[:6] != 'bytes=': return
5 #: E702:1:10
6 a = False; b = True
7 #: E702:1:17
8 import bdist_egg; bdist_egg.write_safety_flag(cmd.egg_info, safe)
9 #: E703:1:13
10 import shlex;
11 #: E702:1:9 E703:1:23
12 del a[:]; a.append(42);
13 #: E704:1:1
14 def f(x): return 2
15 #: E704:1:1 E226:1:19
16 def f(x): return 2*x
17 #: E704:2:5 E226:2:23
18 while all is round:
19 def f(x): return 2*x