summaryrefslogtreecommitdiff
path: root/Examples/test-suite/python
diff options
context:
space:
mode:
authorMarcelo Matus <mmatus@acms.arizona.edu>2006-02-06 09:23:28 +0000
committerMarcelo Matus <mmatus@acms.arizona.edu>2006-02-06 09:23:28 +0000
commite9bb07f132675c2d1cffa37a9498b6170c4a4cde (patch)
treed2c2fd186c63fad83281b87bf43fac2661d8574d /Examples/test-suite/python
parent1e2e004b4ae748e2ee22427612049edcd69e25cb (diff)
downloadswig-e9bb07f132675c2d1cffa37a9498b6170c4a4cde.tar.gz
fix for 1.5.2
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@8722 626c5289-ae23-0410-ae9c-e8d60b6d4f22
Diffstat (limited to 'Examples/test-suite/python')
-rw-r--r--Examples/test-suite/python/director_thread_runme.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Examples/test-suite/python/director_thread_runme.py b/Examples/test-suite/python/director_thread_runme.py
index d3427dff0..e66817e17 100644
--- a/Examples/test-suite/python/director_thread_runme.py
+++ b/Examples/test-suite/python/director_thread_runme.py
@@ -5,7 +5,7 @@ class Derived(Foo) :
Foo.__init__(self)
def do_foo(self):
- self.val -= 1
+ self.val = self.val - 1
d = Derived()