From: Robin Dunn Date: Thu, 8 Aug 2002 21:44:11 +0000 (+0000) Subject: PyCrust updates from their CVS. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/c4e387521b7297a24e4aa016b588cf77d32d1b5f PyCrust updates from their CVS. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16425 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/wxPython/lib/PyCrust/README.txt b/wxPython/wxPython/lib/PyCrust/README.txt index b5c4d8ad9b..c8c66c0e15 100644 --- a/wxPython/wxPython/lib/PyCrust/README.txt +++ b/wxPython/wxPython/lib/PyCrust/README.txt @@ -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. * ============================================================== diff --git a/wxPython/wxPython/lib/PyCrust/crust.py b/wxPython/wxPython/lib/PyCrust/crust.py index 59175c58fa..9a8703738c 100644 --- a/wxPython/wxPython/lib/PyCrust/crust.py +++ b/wxPython/wxPython/lib/PyCrust/crust.py @@ -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__': diff --git a/wxPython/wxPython/lib/PyCrust/shell.py b/wxPython/wxPython/lib/PyCrust/shell.py index e5105389d8..79ce1ca331 100644 --- a/wxPython/wxPython/lib/PyCrust/shell.py +++ b/wxPython/wxPython/lib/PyCrust/shell.py @@ -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 " __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__':