]> git.saurik.com Git - wxWidgets.git/blame_incremental - wxPython/src/__init__.py
Typos
[wxWidgets.git] / wxPython / src / __init__.py
... / ...
CommitLineData
1#----------------------------------------------------------------------------
2# Name: __init__.py
3# Purpose: The presence of this file turns this directory into a
4# Python package.
5#
6# Author: Robin Dunn
7#
8# Created: 8-Aug-1998
9# RCS-ID: $Id$
10# Copyright: (c) 1998 by Total Control Software
11# Licence: wxWindows license
12#----------------------------------------------------------------------------
13
14import __version__
15__version__ = __version__.VERSION_STRING
16
17
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
24
25#----------------------------------------------------------------------------
26