summaryrefslogtreecommitdiff
path: root/sandbox/tibs/pysource/test/testassign.py
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/tibs/pysource/test/testassign.py')
-rwxr-xr-xsandbox/tibs/pysource/test/testassign.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/sandbox/tibs/pysource/test/testassign.py b/sandbox/tibs/pysource/test/testassign.py
deleted file mode 100755
index e4d70a356..000000000
--- a/sandbox/tibs/pysource/test/testassign.py
+++ /dev/null
@@ -1,12 +0,0 @@
-class Jim:
-
- def __init__(self):
- a = 1
- a = [2,3]
- a,b = 4,5
- a,b = [6,7]
- a,self.a = 8,9
- a = b = self.a = 10
- a,b = c,d = 11,12
- self.a,self.b = 13,14
- self.a = self.b = 15