summaryrefslogtreecommitdiffstatshomepage
path: root/tests/bytecode/mp-tests/list1.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bytecode/mp-tests/list1.py')
-rw-r--r--tests/bytecode/mp-tests/list1.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/bytecode/mp-tests/list1.py b/tests/bytecode/mp-tests/list1.py
new file mode 100644
index 0000000000..e2a1a3e9fa
--- /dev/null
+++ b/tests/bytecode/mp-tests/list1.py
@@ -0,0 +1,8 @@
+x = []
+x = [1]
+x = [1,] # not implemented
+x = [1, 2]
+x = [1, 2,]
+x = [1, 2, 3]
+x = [1, 2, 3, 4]
+x = [1, 2, 3, 4, 5]