From: Robin Dunn Date: Thu, 2 Jun 2005 03:31:17 +0000 (+0000) Subject: iewin module is no longer built by default, don't put activex in X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/4701b68199121b214bafa8cf59a43164411caf4f iewin module is no longer built by default, don't put activex in __all__ unless running on wxMSW git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34503 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/src/__init__.py b/wxPython/src/__init__.py index ef39beb15d..4b0f1dc287 100644 --- a/wxPython/src/__init__.py +++ b/wxPython/src/__init__.py @@ -32,11 +32,9 @@ __all__ = [ 'xrc', # contribs (need a better way to find these...) - 'activex', 'animate', 'gizmos', 'glcanvas', - 'iewin', 'stc', ] @@ -44,6 +42,9 @@ __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