mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-30 07:30:10 +01:00
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@73416 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
23 lines
616 B
Python
23 lines
616 B
Python
#---------------------------------------------------------------------------
|
|
# Name: wx/__init__.py
|
|
# Author: Robin Dunn
|
|
#
|
|
# Created: 3-Nov-2010
|
|
# Copyright: (c) 2013 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
|