1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-12 09:18:10 +03:00
samba-mirror/third_party/pep8/testsuite/E11.py
Jelmer Vernooij a001b03854 pep8: Move to third_party/.
Also, update to latest upstream version.

Signed-Off-By: Jelmer Vernooij <jelmer@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
2015-04-27 21:18:10 +02:00

37 lines
663 B
Python

#: E111
if x > 2:
print x
#: E111
if True:
print
#: E112
if False:
print
#: E113
print
print
#: E114 E116
mimetype = 'application/x-directory'
# 'httpd/unix-directory'
create_date = False
#: E116 E116 E116
def start(self):
if True:
self.master.start()
# try:
# self.master.start()
# except MasterExit:
# self.shutdown()
# finally:
# sys.exit()
#: E115 E115 E115 E115 E115 E115
def start(self):
if True:
# try:
# self.master.start()
# except MasterExit:
# self.shutdown()
# finally:
# sys.exit()
self.master.start()