X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4701b68199121b214bafa8cf59a43164411caf4f..e86fbab1bade4c76243ab6552d0823989295cad5:/wxPython/src/__init__.py diff --git a/wxPython/src/__init__.py b/wxPython/src/__init__.py index 4b0f1dc287..1bd0cd4752 100644 --- a/wxPython/src/__init__.py +++ b/wxPython/src/__init__.py @@ -23,16 +23,19 @@ __all__ = [ 'tools', # other modules + 'animate', + 'aui', 'calendar', + 'combo', 'grid', 'html', 'media', + 'richtext', 'webkit', 'wizard', 'xrc', # contribs (need a better way to find these...) - 'animate', 'gizmos', 'glcanvas', 'stc', @@ -50,8 +53,7 @@ if 'wxMSW' in PlatformInfo: 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('_')]