blob: 1051e32cf8ed62b5df3961c0f9b05e2dcbff6845 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#: E401
import os, sys
#: Okay
import os
import sys
from subprocess import Popen, PIPE
from myclass import MyClass
from foo.bar.yourclass import YourClass
import myclass
import foo.bar.yourclass
#: E402
__all__ = ['abc']
import foo
#: Okay
try:
import foo
except:
pass
else:
print('imported foo')
finally:
print('made attempt to import foo')
import bar
#: E402
VERSION = '1.2.3'
import foo
#: E402
import foo
a = 1
import bar
|