From 73602844eb866409c7c3a50bf7173a19785fcd1d Mon Sep 17 00:00:00 2001 From: Marcelo Matus Date: Mon, 6 Feb 2006 09:23:28 +0000 Subject: [PATCH] fix for 1.5.2 git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@8722 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- SWIG/Examples/test-suite/python/director_thread_runme.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SWIG/Examples/test-suite/python/director_thread_runme.py b/SWIG/Examples/test-suite/python/director_thread_runme.py index d3427dff0..e66817e17 100644 --- a/SWIG/Examples/test-suite/python/director_thread_runme.py +++ b/SWIG/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()