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:
parent
415186c1f4
commit
1c4ec59e45
8 changed files with 44 additions and 15 deletions
|
|
@ -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');
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue