diff options
Diffstat (limited to 'testsuite/E26.py')
-rw-r--r-- | testsuite/E26.py | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/testsuite/E26.py b/testsuite/E26.py index 984efb5..e599a00 100644 --- a/testsuite/E26.py +++ b/testsuite/E26.py @@ -6,8 +6,25 @@ x = x + 1 #Increment x x = x + 1 # Increment x #: E262 x = y + 1 #: Increment x +#: E265 +#Block comment +a = 1 #: Okay pass # an inline comment x = x + 1 # Increment x y = y + 1 #: Increment x -#: + +# Block comment +a = 1 + +# Block comment1 + +# Block comment2 +aaa = 1 + + +# example of docstring (not parsed) +def oof(): + """ + #foo not parsed + """ |