Files
Phoenix/src/__init__.py
Robin Dunn b77c88a280 Merge tag 'wxPython-4.0.2' into wxPy-4.0.x
(cherry picked from commit 4c56c39e52)
2018-06-17 22:04:22 -07:00

23 lines
621 B
Python

#---------------------------------------------------------------------------
# Name: wx/__init__.py
# Author: Robin Dunn
#
# Created: 3-Nov-2010
# Copyright: (c) 2010-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------
# Load the main version string into the package namespace
import wx.__version__
__version__ = wx.__version__.VERSION_STRING
# Import all items from the core wxPython module so they appear in the wx
# package namespace.
from wx.core import *
# Clean up the package namespace
del core
del wx