simplify

Annotated tests/operators.py

279:504dc5d62374
2007-09-06 Paul Boddie Added a fully-qualified name method for WithName-derived classes, producing a more usable global name for applications such as the viewer. Added a method for returning "visible" class attributes to GeneralClass. Added an attribute table production function for integration with the explicit distribution, along with a test program option for generating such a table.
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()