aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/parso/py2/tests/normalizer_issue_files/python2.7.py
blob: f86e2ace9e71c43b7af944765f1162ed833fc4bf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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