X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4701b68199121b214bafa8cf59a43164411caf4f..84bc0d49e411fd74ddac8b13318fc2edfba9258a:/wxPython/src/__init__.py?ds=sidebyside diff --git a/wxPython/src/__init__.py b/wxPython/src/__init__.py index 4b0f1dc287..53a578b4ad 100644 --- a/wxPython/src/__init__.py +++ b/wxPython/src/__init__.py @@ -23,10 +23,12 @@ __all__ = [ 'tools', # other modules + 'aui', 'calendar', 'grid', 'html', 'media', + 'richtext', 'webkit', 'wizard', 'xrc', @@ -50,8 +52,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('_')]