summaryrefslogtreecommitdiff
path: root/Examples/test-suite/python/grouping_runme.py
blob: 36f9b38de69f55347047e3400827df73116d6c37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
grouping.test3 = 42