summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2013-05-02 00:25:24 +0200
committerFlorent Xicluna <florent.xicluna@gmail.com>2013-05-02 00:25:24 +0200
commit856d287be3cd8101e8de703b9dd0eef263947e74 (patch)
tree79f1b84b77ee6a9795e78cfee8c35965f39f1dcd
parentfcc93c580aaa84fd2f250fff2edab7ce0b87cf5a (diff)
downloadpep8-856d287be3cd8101e8de703b9dd0eef263947e74.tar.gz
More tests for E265 with the shebang
-rw-r--r--testsuite/E26.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/testsuite/E26.py b/testsuite/E26.py
index e599a00..d838e70 100644
--- a/testsuite/E26.py
+++ b/testsuite/E26.py
@@ -9,7 +9,13 @@ x = y + 1 #: Increment x
#: E265
#Block comment
a = 1
+#: E265
+m = 42
+#! This is important
+mx = 42 - 42
#: Okay
+#!/usr/bin/env python
+
pass # an inline comment
x = x + 1 # Increment x
y = y + 1 #: Increment x