| 1 | |
| 2 | """Renamer stub: provides a way to drop the wx prefix from wxPython objects.""" |
| 3 | |
| 4 | from wx import _rename |
| 5 | from wxPython.py import PyShell |
| 6 | _rename(globals(), PyShell.__dict__, modulename='py.PyShell') |
| 7 | del PyShell |
| 8 | del _rename |
| 9 | |
| 10 | if __name__ == '__main__': |
| 11 | main() |