From 6d067170dc404d6cbd5ba147cf485eb2cb06c52f Mon Sep 17 00:00:00 2001 From: Marcelo Matus Date: Thu, 23 Feb 2006 09:13:16 +0000 Subject: [PATCH] fixes for python 2.1 git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@8878 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- CHANGES.current | 1 + Examples/test-suite/python/director_abstract_runme.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGES.current b/CHANGES.current index 19be474a5..ac144d70b 100644 --- a/CHANGES.current +++ b/CHANGES.current @@ -5,6 +5,7 @@ Version 1.3.29 (In progress) Fix all the errors reported for 1.3.28. + - fixes for python 2.1 and the runtime library - fix copyctor + template bug #1432125 - fix [ 1432152 ] %rename friend operators in namespace - fix gcc warning reported by R. Bernstein 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)