aboutsummaryrefslogtreecommitdiff
path: root/tests/cpydiff
diff options
context:
space:
mode:
authorDamien George2017-05-06 11:01:57 +1000
committerDamien George2017-05-06 11:01:57 +1000
commit084824f866af4cda42a41a16d844fa47ba3b8938 (patch)
tree573761fd56fa5263be37e45e98b4569de2293685 /tests/cpydiff
parentdce7dd425977320b822f8bb529d123eafebe6e55 (diff)
tests: Move super-as-local test from cpydiff to basic tests.
It's now possible to use the name "super" as a local variable.
Diffstat (limited to 'tests/cpydiff')
-rw-r--r--tests/cpydiff/core_class_superaslocal.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/cpydiff/core_class_superaslocal.py b/tests/cpydiff/core_class_superaslocal.py
deleted file mode 100644
index fc07ccb38..000000000
--- a/tests/cpydiff/core_class_superaslocal.py
+++ /dev/null
@@ -1,13 +0,0 @@
-"""
-categories: Core,Classes
-description: Bug when using "super" as a local
-cause: Unknown
-workaround: Unknown
-"""
-class A:
- def foo(self):
- super = [1]
- super.pop()
- print(super)
-
-A().foo()