]> git.saurik.com Git - wxWidgets.git/blame - wxPython/src/__init__.py
Applied patch #809019 (Adds embedded/plugin capabilities to wxMac).
[wxWidgets.git] / wxPython / src / __init__.py
CommitLineData
7bf85405
RD
1#----------------------------------------------------------------------------
2# Name: __init__.py
b8b8dda7
RD
3# Purpose: The presence of this file turns this directory into a
4# Python package.
7bf85405
RD
5#
6# Author: Robin Dunn
7#
d14a1e28 8# Created: 8-Aug-1998
7bf85405
RD
9# RCS-ID: $Id$
10# Copyright: (c) 1998 by Total Control Software
11# Licence: wxWindows license
12#----------------------------------------------------------------------------
13
2f90df85 14import __version__
d14a1e28 15__version__ = __version__.VERSION_STRING
2f90df85
RD
16
17
d14a1e28
RD
18# Load the package namespace with the core classes and such
19from wx.core import *
20
21# wx.core has a 'wx' symbol for internal use. That's kinda silly for
22# this namespace so get rid of it.
23del wx
b26e2dc4 24
7bf85405 25#----------------------------------------------------------------------------
bb0054cd 26