[pypy-svn] r79645 - pypy/trunk/lib_pypy

antocuni at codespeak.net antocuni at codespeak.net
Mon Nov 29 16:39:25 CET 2010


Author: antocuni
Date: Mon Nov 29 16:39:23 2010
New Revision: 79645

Modified:
   pypy/trunk/lib_pypy/_pypy_interact.py
Log:
(thanks arigo) obvious typo, it's a bit hard to write a test for it, though


Modified: pypy/trunk/lib_pypy/_pypy_interact.py
==============================================================================
--- pypy/trunk/lib_pypy/_pypy_interact.py	(original)
+++ pypy/trunk/lib_pypy/_pypy_interact.py	Mon Nov 29 16:39:23 2010
@@ -8,7 +8,7 @@
     # mimics what CPython does in pythonrun.c
     if not hasattr(sys, 'ps1'):
         sys.ps1 = '>>>> '
-    if not hasattr(sys, 'ps1'):
+    if not hasattr(sys, 'ps2'):
         sys.ps2 = '.... '
     #
     try:



More information about the Pypy-commit mailing list