]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/src/__init__.py
1 #----------------------------------------------------------------------------
3 # Purpose: The presence of this file turns this directory into a
10 # Copyright: (c) 1998 by Total Control Software
11 # Licence: wxWindows license
12 #----------------------------------------------------------------------------
15 __version__
= __version__
.VERSION_STRING
34 # contribs (need a better way to find these...)
41 # Load the package namespace with the core classes and such
42 from wx
._core
import *
45 if 'wxMSW' in PlatformInfo
:
46 __all__
+= ['activex']
48 # Load up __all__ with all the names of items that should appear to be
49 # defined in this pacakge so epydoc will document them that way.
51 __docfilter__
= wx
._core
.__DocFilter
(globals())
53 __all__
+= [name
for name
in dir(wx
._core
)
54 if not (name
.startswith('__') and name
.endswith('__'))]
58 #----------------------------------------------------------------------------