summaryrefslogtreecommitdiff
path: root/testsuite/E26.py
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2012-12-26 00:55:06 +0100
committerFlorent Xicluna <florent.xicluna@gmail.com>2012-12-26 00:55:06 +0100
commit5d7dbef4f904123b40a9b76a41fb08aa1e3a1d03 (patch)
tree9d436106d9a0cd5fe5df1f3fcee863f8f534aec8 /testsuite/E26.py
parent44e8c9171aa2231a2b31c9488e2108c0170eed41 (diff)
downloadpep8-5d7dbef4f904123b40a9b76a41fb08aa1e3a1d03.tar.gz
Allow sphinx.ext.autodoc syntax for comments. Issue #110
Diffstat (limited to 'testsuite/E26.py')
-rw-r--r--testsuite/E26.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/testsuite/E26.py b/testsuite/E26.py
index b4f7af7..984efb5 100644
--- a/testsuite/E26.py
+++ b/testsuite/E26.py
@@ -4,3 +4,10 @@ pass # an inline comment
x = x + 1 #Increment x
#: E262
x = x + 1 # Increment x
+#: E262
+x = y + 1 #: Increment x
+#: Okay
+pass # an inline comment
+x = x + 1 # Increment x
+y = y + 1 #: Increment x
+#: