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
This commit is contained in:
Robin Dunn 2005-06-02 03:31:17 +00:00
parent 388186f7e1
commit 4701b68199

View File

@ -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