diff options
author | Colin Walters <walters@verbum.org> | 2013-02-24 12:07:28 -0500 |
---|---|---|
committer | Colin Walters <walters@verbum.org> | 2013-02-26 16:25:11 -0500 |
commit | f17dfbe3e65acd9274c2f98292362b0824564e0d (patch) | |
tree | 6af18d5fa7831f67218ad4187dd32d184d806d2d /giscanner/ast.py | |
parent | c0ebb1e9888ee745437e87482d0b89c30cab355f (diff) | |
download | gobject-introspection-f17dfbe3e65acd9274c2f98292362b0824564e0d.tar.gz |
scanner: internals cleanup: Move pkgconfig list to Namespace
Continuation of previous work.
Diffstat (limited to 'giscanner/ast.py')
-rw-r--r-- | giscanner/ast.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/giscanner/ast.py b/giscanner/ast.py index 506643d0..58540912 100644 --- a/giscanner/ast.py +++ b/giscanner/ast.py @@ -375,6 +375,7 @@ class Namespace(object): self.includes = set() # Include self.shared_libraries = [] # str self.c_includes = [] # str + self.exported_packages = [] # str def type_from_name(self, name, ctype=None): """Backwards compatibility method for older .gir files, which |