Author: Anton Gulenko <[email protected]>
Branch: storage
Changeset: r907:0b36d560ebf1
Date: 2014-07-14 13:35 +0200
http://bitbucket.org/pypy/lang-smalltalk/changeset/0b36d560ebf1/

Log:    Removed obsolete CLI flag.

diff --git a/targetimageloadingsmalltalk.py b/targetimageloadingsmalltalk.py
--- a/targetimageloadingsmalltalk.py
+++ b/targetimageloadingsmalltalk.py
@@ -12,7 +12,7 @@
 
 def _usage(argv):
     print """
-    Usage: %s <path> [-r|-m|-h] [-naPu] [-jpis] [-tlLE]
+    Usage: %s <path> [-r|-m|-h] [-naPu] [-jpiS] [-tlLE]
             <path> - image path (default: Squeak.image)
 
           Execution mode:
@@ -104,8 +104,6 @@
                 code, idx = get_parameter(argv, idx, arg)
             elif arg in ["-i", "--no-interrupts"]:
                 interrupts = False
-            elif arg in ["-s"]:
-                max_stack_depth, idx = get_int_parameter(argv, idx, arg)
             elif arg in ["-P", "--process"]:
                 headless = False
             elif arg in ["-S"]:
@@ -172,7 +170,7 @@
             context = active_context(space)
     else:
         context = active_context(space)
-
+    
     w_result = execute_context(interp, context)
     print result_string(w_result)
     storage_logger.print_aggregated_log()
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to