]> git.saurik.com Git - wxWidgets.git/blame - utils/wxPython/src/__init__.py
Changed the import semantics from "from wxPython import *" to "from
[wxWidgets.git] / utils / wxPython / src / __init__.py
CommitLineData
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#
8# Created: 8/8/98
9# RCS-ID: $Id$
10# Copyright: (c) 1998 by Total Control Software
11# Licence: wxWindows license
12#----------------------------------------------------------------------------
13
b26e2dc4 14
7bf85405
RD
15#----------------------------------------------------------------------------
16#
17# $Log$
b8b8dda7
RD
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#
b26e2dc4
RD
37# Revision 1.2 1998/10/07 07:34:32 RD
38# Version 0.4.1 for wxGTK
39#
7bf85405
RD
40# Revision 1.1 1998/08/09 08:25:49 RD
41# Initial version
42#
43#