simplify

Annotated tests/operators.py

285:6f583cfa39a5
2008-07-13 Paul Boddie Commit long uncommitted changes.
paulb@186 1
def f():
paulb@186 2
    a = 1 + 1.1 - 1
paulb@186 3
    b = a + 2 / 2
paulb@186 4
    c = -a
paulb@186 5
    d = +b
paulb@186 6
    e = a // b
paulb@186 7
paulb@186 8
f()