Clearly state that the new wx module is being used

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@21051 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2003-06-11 21:18:44 +00:00
parent e1663a1065
commit 3b9de29c38
9 changed files with 11 additions and 10 deletions

View File

@@ -1,6 +1,6 @@
import sys
import wx
import wx # This module uses the new wx namespace
import wx.html
import wx.lib.wxpTag

View File

@@ -12,7 +12,8 @@
#----------------------------------------------------------------------------
import sys, os, time
import wx
import wx # This module uses the new wx namespace
import wx.html
import images

View File

@@ -1,5 +1,5 @@
import wx
import wx # This module uses the new wx namespace
from wx import html
from Main import opj

View File

@@ -9,7 +9,7 @@ in Python. This is not part of the demo framework.
"""
import wx
import wx # This module uses the new wx namespace
import time

View File

@@ -17,9 +17,9 @@ directory within its own frame window. Just specify the module name
on the command line.
"""
import wx # This module uses the new wx namespace
import sys, os
import wx
#----------------------------------------------------------------------------

View File

@@ -5,7 +5,7 @@
# structure of any wxPython application.
#----------------------------------------------------------------------
import wx
import wx # This module uses the new wx namespace
class MyFrame(wx.Frame):
"""

View File

@@ -1,5 +1,5 @@
import wx
import wx # This module uses the new wx namespace
#----------------------------------------------------------------------

View File

@@ -6,7 +6,7 @@ can do simple drawings upon.
"""
import wx
import wx # This module uses the new wx namespace
#----------------------------------------------------------------------

View File

@@ -10,9 +10,9 @@ menu that DoodleWindow provides. There is also a nice About dialog
implmented using an wx.html.HtmlWindow.
"""
import wx
import wx # This module uses the new wx namespace
import wx.html
from wx.lib import buttons # for generic button classes
from wx.lib import buttons # for generic button classes
from doodle import DoodleWindow
import os, cPickle