diff options
author | Marcelo Matus <mmatus@acms.arizona.edu> | 2006-02-23 09:13:16 +0000 |
---|---|---|
committer | Marcelo Matus <mmatus@acms.arizona.edu> | 2006-02-23 09:13:16 +0000 |
commit | 6d067170dc404d6cbd5ba147cf485eb2cb06c52f (patch) | |
tree | 1b6b7777d4aeea69feae0e669a0de3dc5ef639d5 /Examples/test-suite/python | |
parent | 26d42ec95d5359d9cd6e0e9edbff50694c40d7ab (diff) | |
download | swig-6d067170dc404d6cbd5ba147cf485eb2cb06c52f.tar.gz |
fixes for python 2.1
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@8878 626c5289-ae23-0410-ae9c-e8d60b6d4f22
Diffstat (limited to 'Examples/test-suite/python')
-rw-r--r-- | Examples/test-suite/python/director_abstract_runme.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Examples/test-suite/python/director_abstract_runme.py b/Examples/test-suite/python/director_abstract_runme.py index 26d4c8883..7d92d10ff 100644 --- a/Examples/test-suite/python/director_abstract_runme.py +++ b/Examples/test-suite/python/director_abstract_runme.py @@ -29,7 +29,7 @@ class MyExample3(director_abstract.Example3_i): return b me1 = MyExample1() -if MyExample1_get_color(me1, 1,2,3) != 1: +if director_abstract.Example1_get_color(me1, 1,2,3) != 1: raise RuntimeError me2 = MyExample2(1,2) |