diff options
author | Florent Xicluna <florent.xicluna@gmail.com> | 2014-04-26 22:37:04 +0200 |
---|---|---|
committer | Florent Xicluna <florent.xicluna@gmail.com> | 2014-04-26 22:37:04 +0200 |
commit | 7b9449d525bcc2c5df4699616d8b75de76a586d4 (patch) | |
tree | 2c1ba89119efd3a98a5a9e829fccdc0f8196fe07 /testsuite | |
parent | a176b77c22ef0c0263ca4f956b9b7c91ea659885 (diff) | |
download | pep8-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.py | 22 |
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() |