summaryrefslogtreecommitdiffstats
path: root/gi/importer.py
Commit message (Collapse)AuthorAgeFilesLines
* Restore the overrides supportSimon van der Linden2010-01-221-26/+14
| | | | | | | | | | | | | Add a ModuleProxy in front of the DynamicModule when an overrides module is present. There is no need for an overrides module to be a class; it can just be a module. Add an override decorator to override the wrapper of a registered type. Adapt Gdk and Gtk accordingly. Add tests. https://bugzilla.gnome.org/show_bug.cgi?id=602830
* Use the right variable when looking up in sys.modulesSimon van der Linden2009-11-251-1/+1
|
* Create overridden modules in two passesJohan Dahlin2009-11-231-13/+21
| | | | | | | | This patch splits overridden module creation into two passes. The first pass creates the auto-generated module normally before the overridden module is attempted to be imported. The second pass imports the overridden module and replaces the auto-generated module with the overridden. This is necessary for the overridden modules to be able to access the auto-generated ones.
* Initial importSimon van der Linden2009-11-081-0/+89