]>
Commit | Line | Data |
---|---|---|
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 | ||
16 | from wxp import * | |
17 | ||
b26e2dc4 RD |
18 | import 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 | # |