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:
@@ -1,6 +1,6 @@
|
|||||||
import sys
|
import sys
|
||||||
|
|
||||||
import wx
|
import wx # This module uses the new wx namespace
|
||||||
import wx.html
|
import wx.html
|
||||||
import wx.lib.wxpTag
|
import wx.lib.wxpTag
|
||||||
|
|
||||||
|
@@ -12,7 +12,8 @@
|
|||||||
#----------------------------------------------------------------------------
|
#----------------------------------------------------------------------------
|
||||||
|
|
||||||
import sys, os, time
|
import sys, os, time
|
||||||
import wx
|
|
||||||
|
import wx # This module uses the new wx namespace
|
||||||
import wx.html
|
import wx.html
|
||||||
|
|
||||||
import images
|
import images
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
import wx
|
import wx # This module uses the new wx namespace
|
||||||
from wx import html
|
from wx import html
|
||||||
from Main import opj
|
from Main import opj
|
||||||
|
|
||||||
|
@@ -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
|
import time
|
||||||
|
|
||||||
|
|
||||||
|
@@ -17,9 +17,9 @@ directory within its own frame window. Just specify the module name
|
|||||||
on the command line.
|
on the command line.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
import wx # This module uses the new wx namespace
|
||||||
|
|
||||||
import sys, os
|
import sys, os
|
||||||
import wx
|
|
||||||
|
|
||||||
#----------------------------------------------------------------------------
|
#----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@@ -5,7 +5,7 @@
|
|||||||
# structure of any wxPython application.
|
# structure of any wxPython application.
|
||||||
#----------------------------------------------------------------------
|
#----------------------------------------------------------------------
|
||||||
|
|
||||||
import wx
|
import wx # This module uses the new wx namespace
|
||||||
|
|
||||||
class MyFrame(wx.Frame):
|
class MyFrame(wx.Frame):
|
||||||
"""
|
"""
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
import wx
|
import wx # This module uses the new wx namespace
|
||||||
|
|
||||||
#----------------------------------------------------------------------
|
#----------------------------------------------------------------------
|
||||||
|
|
||||||
|
@@ -6,7 +6,7 @@ can do simple drawings upon.
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
||||||
import wx
|
import wx # This module uses the new wx namespace
|
||||||
|
|
||||||
#----------------------------------------------------------------------
|
#----------------------------------------------------------------------
|
||||||
|
|
||||||
|
@@ -10,9 +10,9 @@ menu that DoodleWindow provides. There is also a nice About dialog
|
|||||||
implmented using an wx.html.HtmlWindow.
|
implmented using an wx.html.HtmlWindow.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import wx
|
import wx # This module uses the new wx namespace
|
||||||
import wx.html
|
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
|
from doodle import DoodleWindow
|
||||||
|
|
||||||
import os, cPickle
|
import os, cPickle
|
||||||
|
Reference in New Issue
Block a user