summaryrefslogtreecommitdiff
path: root/tests/bytecode/mp-tests/scope0.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bytecode/mp-tests/scope0.py')
-rw-r--r--tests/bytecode/mp-tests/scope0.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/bytecode/mp-tests/scope0.py b/tests/bytecode/mp-tests/scope0.py
deleted file mode 100644
index 5d81345ea..000000000
--- a/tests/bytecode/mp-tests/scope0.py
+++ /dev/null
@@ -1,7 +0,0 @@
-x = 1
-print(x)
-
-# local store after load
-def f():
- print(x)
- x = 1