]> git.saurik.com Git - wxWidgets.git/commitdiff
PyCrust updates from their CVS.
authorRobin Dunn <robin@alldunn.com>
Thu, 8 Aug 2002 21:44:11 +0000 (21:44 +0000)
committerRobin Dunn <robin@alldunn.com>
Thu, 8 Aug 2002 21:44:11 +0000 (21:44 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16425 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/wxPython/lib/PyCrust/README.txt
wxPython/wxPython/lib/PyCrust/crust.py
wxPython/wxPython/lib/PyCrust/shell.py

index b5c4d8ad9bdea5d39640c5a9cc3696fecc72a9e6..c8c66c0e153d384e0dc172fb8eb46e16bc776c02 100644 (file)
@@ -2,7 +2,7 @@ PyCrust - The Flakiest Python Shell
 Half-baked by Patrick K. O'Brien (pobrien@orbtech.com)
 
 ==============================================================
-* Orbtech - "Your Source For Python Development Services"    *
+* Orbtech - "Your source for Python programming expertise."  *
 * Sample all our half-baked Python goods at www.orbtech.com. *
 ==============================================================
 
index 59175c58fa1a87b5990a17ccc73954d9503a27ac..9a8703738cc3e4fef62828c1c1d3df2729a9db50 100644 (file)
@@ -52,7 +52,7 @@ class CrustFrame(wxFrame, ShellMenu):
         """Create a PyCrust CrustFrame instance."""
         wxFrame.__init__(self, parent, id, title, pos, size, style)
         intro = 'Welcome To PyCrust %s - The Flakiest Python Shell' % VERSION
-        intro += '\nSponsored by Orbtech - Specializing in Python Application Development'
+        intro += '\nSponsored by Orbtech - Your source for Python programming expertise.'
         self.CreateStatusBar()
         self.SetStatusText(intro.replace('\n', ', '))
         if wxPlatform == '__WXMSW__':
index e5105389d8abcec5f674894f3dfb5075a8acb91d..79ce1ca33117e061a14e90b78afd50a561989f46 100644 (file)
@@ -2,7 +2,7 @@
 commands to be sent to the interpreter. This particular shell is based on
 wxPython's wxStyledTextCtrl. The latest files are always available at the
 SourceForge project page at http://sourceforge.net/projects/pycrust/.
-Sponsored by Orbtech - Your Source For Python Development Services"""
+Sponsored by Orbtech - Your source for Python programming expertise."""
 
 __author__ = "Patrick K. O'Brien <pobrien@orbtech.com>"
 __cvsid__ = "$Id$"
@@ -767,9 +767,9 @@ class Shell(wxStyledTextCtrl):
     
     def autoCompleteShow(self, command):
         """Display auto-completion popup list."""
-        list = self.interp.getAutoCompleteList(command, \
-                    includeMagic=self.autoCompleteIncludeMagic, \
-                    includeSingle=self.autoCompleteIncludeSingle, \
+        list = self.interp.getAutoCompleteList(command, 
+                    includeMagic=self.autoCompleteIncludeMagic, 
+                    includeSingle=self.autoCompleteIncludeSingle, 
                     includeDouble=self.autoCompleteIncludeDouble)
         if list:
             options = ' '.join(list)
@@ -1121,7 +1121,7 @@ class ShellFrame(wxFrame, ShellMenu):
         """Create a PyCrust ShellFrame instance."""
         wxFrame.__init__(self, parent, id, title, pos, size, style)
         intro = 'Welcome To PyCrust %s - The Flakiest Python Shell' % VERSION
-        intro += '\nSponsored by Orbtech - Specializing in Python Application Development'
+        intro += '\nSponsored by Orbtech - Your source for Python programming expertise.'
         self.CreateStatusBar()
         self.SetStatusText(intro.replace('\n', ', '))
         if wxPlatform == '__WXMSW__':