Files
parso/test/normalizer_issue_files/python2.7.py
2017-07-11 00:26:24 +02:00

15 lines
255 B
Python

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