[pypy-commit] lang-smalltalk default: in the smalltalk debugging tools, renamed skip to over

lwassermann noreply at buildbot.pypy.org
Thu May 23 16:45:00 CEST 2013


Author: Lars Wassermann <lars.wassermann at gmail.com>
Branch: 
Changeset: r414:597318b660c2
Date: 2013-05-23 16:44 +0200
http://bitbucket.org/pypy/lang-smalltalk/changeset/597318b660c2/

Log:	in the smalltalk debugging tools, renamed skip to over

diff --git a/spyvm/interpreter.py b/spyvm/interpreter.py
--- a/spyvm/interpreter.py
+++ b/spyvm/interpreter.py
@@ -873,9 +873,9 @@
         def meth(s_context, w_selector, argcount, interp,
                       receiver, receiverclassshadow):
             options = [False]
-            def skip(): options[0] = True; print  'skipping #%s' % w_selector.as_string()
+            def next(): interp.message_stepping = True; print 'Now continue (c).'
+            def over(): options[0] = True; print  'Skipping #%s. You still need to continue(c).' % w_selector.as_string()
             def pstack(): print s_context.print_stack()
-            def thisContext(): print s_context
             if interp.message_stepping:
                 if argcount == 0:
                     print "-> %s %s" % (receiver.as_repr_string(),


More information about the pypy-commit mailing list