diff options
Diffstat (limited to 'contrib/python/parso/py2/tests/normalizer_issue_files/python2.7.py')
| -rw-r--r-- | contrib/python/parso/py2/tests/normalizer_issue_files/python2.7.py | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/contrib/python/parso/py2/tests/normalizer_issue_files/python2.7.py b/contrib/python/parso/py2/tests/normalizer_issue_files/python2.7.py index f86e2ace9e7..5d107397494 100644 --- a/contrib/python/parso/py2/tests/normalizer_issue_files/python2.7.py +++ b/contrib/python/parso/py2/tests/normalizer_issue_files/python2.7.py @@ -1,14 +1,14 @@ -import sys - -print 1, 2 >> sys.stdout - - -foo = ur'This is not possible in Python 3.' - -# This is actually printing a tuple. -#: E275:5 -print(1, 2) - -# True and False are not keywords in Python 2 and therefore there's no need for -# a space. -norman = True+False +import sys + +print 1, 2 >> sys.stdout + + +foo = ur'This is not possible in Python 3.' + +# This is actually printing a tuple. +#: E275:5 +print(1, 2) + +# True and False are not keywords in Python 2 and therefore there's no need for +# a space. +norman = True+False |
