]> git.saurik.com Git - wxWidgets.git/blob - utils/wxPython/src/__init__.py
Additions for wxTreeCtrl
[wxWidgets.git] / utils / wxPython / src / __init__.py
1 #----------------------------------------------------------------------------
2 # Name: __init__.py
3 # Purpose: The presence of this file turs this directory into a
4 # Python package. For simplicity, we import all of the
5 # wxPython package at this point, so users only need to
6 # import the package.
7 #
8 # Author: Robin Dunn
9 #
10 # Created: 8/8/98
11 # RCS-ID: $Id$
12 # Copyright: (c) 1998 by Total Control Software
13 # Licence: wxWindows license
14 #----------------------------------------------------------------------------
15
16 from wxp import *
17
18 import wxp
19 __version__ = wxp.__version__
20
21 #----------------------------------------------------------------------------
22 #
23 # $Log$
24 # Revision 1.2 1998/10/07 07:34:32 RD
25 # Version 0.4.1 for wxGTK
26 #
27 # Revision 1.1 1998/08/09 08:25:49 RD
28 # Initial version
29 #
30 #