blob: 5d1073974941381c03deffaa8885af8cd37eeea5 (
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
|