[pypy-svn] r41128 - pypy/dist/pypy/translator/goal
arigo at codespeak.net
arigo at codespeak.net
Thu Mar 22 22:43:21 CET 2007
Author: arigo
Date: Thu Mar 22 22:43:21 2007
New Revision: 41128
Modified:
pypy/dist/pypy/translator/goal/unixcheckpoint.py
Log:
Make confusion between "cont" and "restart" in a fork-before prompt less
likely.
Modified: pypy/dist/pypy/translator/goal/unixcheckpoint.py
==============================================================================
--- pypy/dist/pypy/translator/goal/unixcheckpoint.py (original)
+++ pypy/dist/pypy/translator/goal/unixcheckpoint.py Thu Mar 22 22:43:21 2007
@@ -9,7 +9,7 @@
while True:
if extra_msg:
print extra_msg
- print '---> Checkpoint: cont / restart / quit / pdb ?'
+ print '---> Checkpoint: cont / restart-it-all / quit / pdb ?'
if auto:
print 'auto-%s' % (auto,)
line = auto
@@ -31,7 +31,7 @@
except Exception, e:
print '(%s ignored)' % e.__class__.__name__
continue
- if line == 'restart':
+ if line == 'restart-it-all':
restart_process()
try:
More information about the Pypy-commit
mailing list