[pypy-svn] r37309 - pypy/dist/pypy/translator/tool

mwh at codespeak.net mwh at codespeak.net
Thu Jan 25 00:04:10 CET 2007


Author: mwh
Date: Thu Jan 25 00:04:08 2007
New Revision: 37309

Modified:
   pypy/dist/pypy/translator/tool/pdbplus.py
Log:
let's have a space back at the end of the pdb+ prompt


Modified: pypy/dist/pypy/translator/tool/pdbplus.py
==============================================================================
--- pypy/dist/pypy/translator/tool/pdbplus.py	(original)
+++ pypy/dist/pypy/translator/tool/pdbplus.py	Thu Jan 25 00:04:08 2007
@@ -15,7 +15,7 @@
 
     def __init__(self, translator):
         pdb.Pdb.__init__(self)
-        self.prompt = "(Pdb+)"
+        self.prompt = "(Pdb+) "
         self.translator = translator
         self.exposed = {}
 



More information about the Pypy-commit mailing list