diff options
Diffstat (limited to 'tests/bytecode/mp-tests/const1.py')
-rw-r--r-- | tests/bytecode/mp-tests/const1.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/bytecode/mp-tests/const1.py b/tests/bytecode/mp-tests/const1.py new file mode 100644 index 0000000000..545b334344 --- /dev/null +++ b/tests/bytecode/mp-tests/const1.py @@ -0,0 +1,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) |