]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/__init__.py
test for special keys first, before testing for alphanumeric ones as even keys such...
[wxWidgets.git] / wxPython / src / __init__.py
index 9c45a5b1215be742134f86c83eab7640dd470bc3..1bd0cd4752e7618ebe6b6153939d404f45f8f7af 100644 (file)
@@ -23,8 +23,10 @@ __all__ = [
     'tools',
 
     # other modules
+    'animate',
     'aui',
     'calendar',
+    'combo',
     'grid',
     'html',
     'media',
@@ -34,7 +36,6 @@ __all__ = [
     'xrc',
 
     # contribs (need a better way to find these...)
-    'animate',
     'gizmos',
     'glcanvas',
     'stc',
@@ -52,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('_')]