summaryrefslogtreecommitdiff
path: root/testsuite
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2014-04-26 22:37:04 +0200
committerFlorent Xicluna <florent.xicluna@gmail.com>2014-04-26 22:37:04 +0200
commit7b9449d525bcc2c5df4699616d8b75de76a586d4 (patch)
tree2c1ba89119efd3a98a5a9e829fccdc0f8196fe07 /testsuite
parenta176b77c22ef0c0263ca4f956b9b7c91ea659885 (diff)
downloadpep8-7b9449d525bcc2c5df4699616d8b75de76a586d4.tar.gz
Replace codes E111/2/3 with E114/5/6 for indentation of comments; issue #274
Diffstat (limited to 'testsuite')
-rw-r--r--testsuite/E11.py22
1 files changed, 21 insertions, 1 deletions
diff --git a/testsuite/E11.py b/testsuite/E11.py
index 98b9431..4ed1096 100644
--- a/testsuite/E11.py
+++ b/testsuite/E11.py
@@ -10,7 +10,27 @@ print
#: E113
print
print
-#: E111 E113
+#: 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()