blob: 13f8c8c92fc288ccea0025a280d86a7ae6369c80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import grouping
x = grouping.test1(42)
if x != 42:
raise RuntimeError
grouping.test2(42)
x = grouping.do_unary(37, grouping.NEGATE)
if x != -37:
raise RuntimeError
grouping.cvar.test3 = 42
|