mirror of
https://github.com/davidhalter/parso.git
synced 2025-12-07 21:34:32 +08:00
15 lines
255 B
Python
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
|