diff options
Diffstat (limited to 'tests/bytecode/mp-tests/list2.py')
-rw-r--r-- | tests/bytecode/mp-tests/list2.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/bytecode/mp-tests/list2.py b/tests/bytecode/mp-tests/list2.py new file mode 100644 index 0000000000..90b21184da --- /dev/null +++ b/tests/bytecode/mp-tests/list2.py @@ -0,0 +1,8 @@ +x = [()] +x = [(a)] +x = [(a,)] +x = [(a)] +x = [(a,)] +x = [a, b] +x = [(a, b)] +x = [(a, b, c)] |