fix for 1.5.2

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@8722 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Marcelo Matus 2006-02-06 09:23:28 +00:00
commit 73602844eb

View file

@ -5,7 +5,7 @@ class Derived(Foo) :
Foo.__init__(self)
def do_foo(self):
self.val -= 1
self.val = self.val - 1
d = Derived()