1 ## This file reverse renames symbols in the wx package to give
2 ## them their wx prefix again, for backwards compatibility.
4 ## Generated by ./distrib/build_renamers.py
6 # This silly stuff here is so the wxPython.wx module doesn't conflict
7 # with the wx package. We need to import modules from the wx package
8 # here, then we'll put the wxPython.wx entry back in sys.modules.
11 if sys
.modules
.has_key('wxPython.wx'):
12 _wx
= sys
.modules
['wxPython.wx']
13 del sys
.modules
['wxPython.wx']
17 sys
.modules
['wxPython.wx'] = _wx
21 # Now assign all the reverse-renamed names:
22 wxWIZARD_EX_HELPBUTTON
= wx
.wizard
.WIZARD_EX_HELPBUTTON
23 wxEVT_WIZARD_PAGE_CHANGED
= wx
.wizard
.wxEVT_WIZARD_PAGE_CHANGED
24 wxEVT_WIZARD_PAGE_CHANGING
= wx
.wizard
.wxEVT_WIZARD_PAGE_CHANGING
25 wxEVT_WIZARD_CANCEL
= wx
.wizard
.wxEVT_WIZARD_CANCEL
26 wxEVT_WIZARD_HELP
= wx
.wizard
.wxEVT_WIZARD_HELP
27 wxEVT_WIZARD_FINISHED
= wx
.wizard
.wxEVT_WIZARD_FINISHED
28 wxWizardEvent
= wx
.wizard
.WizardEvent
29 wxWizardEventPtr
= wx
.wizard
.WizardEventPtr
30 wxWizardPage
= wx
.wizard
.WizardPage
31 wxWizardPagePtr
= wx
.wizard
.WizardPagePtr
32 wxPyWizardPage
= wx
.wizard
.PyWizardPage
33 wxPyWizardPagePtr
= wx
.wizard
.PyWizardPagePtr
34 wxPrePyWizardPage
= wx
.wizard
.PrePyWizardPage
35 wxWizardPageSimple
= wx
.wizard
.WizardPageSimple
36 wxWizardPageSimplePtr
= wx
.wizard
.WizardPageSimplePtr
37 wxPreWizardPageSimple
= wx
.wizard
.PreWizardPageSimple
38 wxWizardPageSimple_Chain
= wx
.wizard
.WizardPageSimple_Chain
39 wxWizard
= wx
.wizard
.Wizard
40 wxWizardPtr
= wx
.wizard
.WizardPtr
41 wxPreWizard
= wx
.wizard
.PreWizard
45 for k
, v
in wx
.wizard
.__dict
__.iteritems():
46 if k
.startswith('EVT'):