summaryrefslogtreecommitdiffstatshomepage
path: root/tests/bytecode/mp-tests/const1.py
blob: 545b334344f3ea49263d3f8c4d3edf75f13d4e48 (plain) (blame)
1
2
3
4
5
6
7
8
9
x = 1
#x = 1.2
#x = 1.2e5
#x = 1.2e+5
#x = 1.2e-5
x = ()
x = (1,)
x = (1,2)
x = ('a',None,3)