summaryrefslogtreecommitdiff
path: root/testsuite/E225not.py
blob: 918ee8d42bc4240b5a4b0cebf5a7ca9f3c07d741 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
i = i + 1
submitted += 1
x = x * 2 - 1
hypot2 = x * x + y * y
c = (a + b) * (a - b)
foo(bar, key='word', *args, **kwargs)
baz(**kwargs)
negative = -1
spam(-1)
-negative
lambda *args, **kw: (args, kw)
lambda a, b=h[:], c=0: (a, b, c)
if not -5 < x < +5:
    print >>sys.stderr, "x is out of range."
print >> sys.stdout, "x is an integer."