From bd969821f9c3476e1f4f753d1bd2588071a56354 Mon Sep 17 00:00:00 2001 From: "Patrick K. O'Brien" Date: Sat, 3 May 2003 15:15:44 +0000 Subject: [PATCH] Docstring changes. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@20456 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/wxPython/py/interpreter.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wxPython/wxPython/py/interpreter.py b/wxPython/wxPython/py/interpreter.py index 07caaafc84..426b0b966f 100644 --- a/wxPython/wxPython/py/interpreter.py +++ b/wxPython/wxPython/py/interpreter.py @@ -1,4 +1,4 @@ -"""PyCrust Interpreter executes Python commands.""" +"""Interpreter executes Python commands.""" __author__ = "Patrick K. O'Brien " __cvsid__ = "$Id$" @@ -18,7 +18,7 @@ except NameError: class Interpreter(InteractiveInterpreter): - """PyCrust Interpreter based on code.InteractiveInterpreter.""" + """Interpreter based on code.InteractiveInterpreter.""" revision = __revision__ @@ -112,7 +112,7 @@ class Interpreter(InteractiveInterpreter): class InterpreterAlaCarte(Interpreter): - """PyCrustAlaCarte Demo Interpreter.""" + """Demo Interpreter.""" def __init__(self, locals, rawin, stdin, stdout, stderr, ps1='main prompt', ps2='continuation prompt'):