[Python-checkins] r50860 - python/trunk/Lib/pdb.py

andrew.kuchling python-checkins at python.org
Thu Jul 27 14:18:20 CEST 2006


Author: andrew.kuchling
Date: Thu Jul 27 14:18:20 2006
New Revision: 50860

Modified:
   python/trunk/Lib/pdb.py
Log:
Reformat docstring; fix typo

Modified: python/trunk/Lib/pdb.py
==============================================================================
--- python/trunk/Lib/pdb.py	(original)
+++ python/trunk/Lib/pdb.py	Thu Jul 27 14:18:20 2006
@@ -230,7 +230,8 @@
         """Interpret the argument as though it had been typed in response
         to the prompt.
 
-        Checks wether  this line is typed in the normal prompt or in a breakpoint command list definition
+        Checks whether this line is typed at the normal prompt or in
+        a breakpoint command list definition. 
         """
         if not self.commands_defining:
             return cmd.Cmd.onecmd(self, line)


More information about the Python-checkins mailing list