mirror of
https://github.com/samba-team/samba.git
synced 2025-01-22 22:04:08 +03:00
a001b03854
Also, update to latest upstream version. Signed-Off-By: Jelmer Vernooij <jelmer@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
39 lines
450 B
Python
39 lines
450 B
Python
#: 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
|