2
0
mirror of https://github.com/boostorg/python.git synced 2026-02-02 21:12:15 +00:00

- Support for global variables

- Bug fixes in ClassExporter


[SVN r18518]
This commit is contained in:
Bruno da Silva de Oliveira
2003-05-23 20:37:35 +00:00
parent 19eff7791d
commit 858e1aba67
17 changed files with 178 additions and 16 deletions

View File

@@ -751,7 +751,7 @@ class _VirtualWrapperGenerator(object):
all_methods = [x for x in self.class_.members if IsVirtual(x)]
for base in self.bases:
base_methods = [x.Copy() for x in self.bases.members if IsVirtual(x)]
base_methods = [x.Copy() for x in base if IsVirtual(x)]
for base_method in base_methods:
base_method.class_ = self.class_.FullName()
all_methods.append(base_method)