X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ac5abdd6065dfd63c3136b8317521cedbbb9109e..d359a38002a9a577fcd7c16ca3ed0f2e874bded7:/wxPython/src/__init__.py diff --git a/wxPython/src/__init__.py b/wxPython/src/__init__.py index ef39beb15d..1bd0cd4752 100644 --- a/wxPython/src/__init__.py +++ b/wxPython/src/__init__.py @@ -23,20 +23,21 @@ __all__ = [ 'tools', # other modules + 'animate', + 'aui', 'calendar', + 'combo', 'grid', 'html', 'media', + 'richtext', 'webkit', 'wizard', 'xrc', # contribs (need a better way to find these...) - 'activex', - 'animate', 'gizmos', 'glcanvas', - 'iewin', 'stc', ] @@ -44,13 +45,15 @@ __all__ = [ from wx._core import * del wx +if 'wxMSW' in PlatformInfo: + __all__ += ['activex'] + # Load up __all__ with all the names of items that should appear to be # defined in this pacakge so epydoc will document them that way. import wx._core __docfilter__ = wx._core.__DocFilter(globals()) -__all__ += [name for name in dir(wx._core) - if not (name.startswith('__') and name.endswith('__'))] +__all__ += [name for name in dir(wx._core) if not name.startswith('_')]