blob: c7b11d14bf499b390947ed4f05c769fd53377310 [file] [log] [blame]
#: E111
if x > 2:
print x
#: E111 E117
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()
#: E117
def start():
print