From: Robin Dunn Date: Mon, 11 Oct 2004 22:14:31 +0000 (+0000) Subject: Clean up comments a bit X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/15dd11365ed337fd18cf97ec860d7e17546a5bd4 Clean up comments a bit git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29788 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/samples/simple/simple.py b/wxPython/samples/simple/simple.py index a5d774b83c..6f0bc5a12d 100644 --- a/wxPython/samples/simple/simple.py +++ b/wxPython/samples/simple/simple.py @@ -1,6 +1,6 @@ #---------------------------------------------------------------------- -# A very simple wxPython example. Just a wxFrame, wxPanel, -# wxStaticText, wxButton, and a wxBoxSizer, but it shows the basic +# A very simple wxPython example. Just a wx.Frame, wx.Panel, +# wx.StaticText, wx.Button, and a wx.BoxSizer, but it shows the basic # structure of any wxPython application. #---------------------------------------------------------------------- @@ -76,7 +76,7 @@ class MyApp(wx.App): frame = MyFrame(None, "Simple wxPython App") self.SetTopWindow(frame) - print "This is where print statements go." + print "Print statements go to this stdout window by default." frame.Show(True) return True