]> git.saurik.com Git - wxWidgets.git/blame - utils/wxPython/src/__init__.py
wxTreeCtrl now works (sort of) for wxPython-GTK. This is the new
[wxWidgets.git] / utils / wxPython / src / __init__.py
CommitLineData
7bf85405
RD
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
16from wxp import *
17
b26e2dc4
RD
18import wxp
19__version__ = wxp.__version__
20
7bf85405
RD
21#----------------------------------------------------------------------------
22#
23# $Log$
b26e2dc4
RD
24# Revision 1.2 1998/10/07 07:34:32 RD
25# Version 0.4.1 for wxGTK
26#
7bf85405
RD
27# Revision 1.1 1998/08/09 08:25:49 RD
28# Initial version
29#
30#