Author: Lars Wassermann <[email protected]>
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(),
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to