]> git.saurik.com Git - wxWidgets.git/blob - wxPython/src/__init__.py
wxPython Merge #2 of 2.4 branch --> HEAD (branch tag: wxPy_2_4_merge_2)
[wxWidgets.git] / wxPython / src / __init__.py
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/8/98
9 # RCS-ID: $Id$
10 # Copyright: (c) 1998 by Total Control Software
11 # Licence: wxWindows license
12 #----------------------------------------------------------------------------
13
14 import __version__
15 __version__ = __version__.wxVERSION_STRING
16
17
18 # Ensure the main extension module is loaded, in case the add-on modules
19 # (such as utils,) are used standalone.
20 import wxc
21
22 #----------------------------------------------------------------------------
23