]>
Commit | Line | Data |
---|---|---|
7bf85405 RD |
1 | #---------------------------------------------------------------------------- |
2 | # Name: __init__.py | |
b8b8dda7 RD |
3 | # Purpose: The presence of this file turns this directory into a |
4 | # Python package. | |
7bf85405 RD |
5 | # |
6 | # Author: Robin Dunn | |
7 | # | |
d14a1e28 | 8 | # Created: 8-Aug-1998 |
7bf85405 RD |
9 | # RCS-ID: $Id$ |
10 | # Copyright: (c) 1998 by Total Control Software | |
11 | # Licence: wxWindows license | |
12 | #---------------------------------------------------------------------------- | |
13 | ||
2f90df85 | 14 | import __version__ |
d14a1e28 | 15 | __version__ = __version__.VERSION_STRING |
2f90df85 RD |
16 | |
17 | ||
d14a1e28 RD |
18 | # Load the package namespace with the core classes and such |
19 | from 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. | |
23 | del wx | |
b26e2dc4 | 24 | |
7bf85405 | 25 | #---------------------------------------------------------------------------- |
bb0054cd | 26 |