]> git.saurik.com Git - wxWidgets.git/blob - utils/wxPython/src/__init__.py
Some slight cleanup and reorganization
[wxWidgets.git] / utils / 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
15 #----------------------------------------------------------------------------
16 #
17 # $Log$
18 # Revision 1.3 1998/12/15 20:41:12 RD
19 # Changed the import semantics from "from wxPython import *" to "from
20 # wxPython.wx import *" This is for people who are worried about
21 # namespace pollution, they can use "from wxPython import wx" and then
22 # prefix all the wxPython identifiers with "wx."
23 #
24 # Added wxTaskbarIcon for wxMSW.
25 #
26 # Made the events work for wxGrid.
27 #
28 # Added wxConfig.
29 #
30 # Added wxMiniFrame for wxGTK, (untested.)
31 #
32 # Changed many of the args and return values that were pointers to gdi
33 # objects to references to reflect changes in the wxWindows API.
34 #
35 # Other assorted fixes and additions.
36 #
37 # Revision 1.2 1998/10/07 07:34:32 RD
38 # Version 0.4.1 for wxGTK
39 #
40 # Revision 1.1 1998/08/09 08:25:49 RD
41 # Initial version
42 #
43 #