Apply patch #2143727 for Python from Serge Monkewitz to fix importing base classes when the package option is specified in %module and that module is %import'ed

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10960 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2008-12-02 20:21:16 +00:00
commit 1c4ec59e45
8 changed files with 44 additions and 15 deletions

View file

@ -14,11 +14,11 @@ sub ok_not ($;$) {
ok($test, $name);
}
my $a = C::A->new();
my $a = CommonPackage::A->new();
isa_ok($a, 'C::A');
isa_ok($a, 'CommonPackage::A');
my $b = C::B->new();
my $b = CommonPackage::B->new();
isa_ok($b, 'C::B');
isa_ok($b, 'CommonPackage::B');