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
|
|
@ -1,5 +1,6 @@
|
|||
class A
|
||||
{
|
||||
public:
|
||||
int testInt() { return 2;}
|
||||
struct Base {
|
||||
virtual int vmethod() { return 1; }
|
||||
int basemethod() { return 1; }
|
||||
virtual ~Base() {}
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue