]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
I'd forgotten that tcsh was the default for 10.1, but SF's 10.1 system
authorBarry Warsaw <barry@python.org>
Mon, 14 Oct 2002 18:21:49 +0000 (18:21 +0000)
committerBarry Warsaw <barry@python.org>
Mon, 14 Oct 2002 18:21:49 +0000 (18:21 +0000)
uses bash and so does my 10.2 system.  "limit stacksize 2048" is the
right invocation for tcsh/csh.

Misc/NEWS

index 15171d8d1058e00d85b90f73e23a39d5470133ab..290fe47baebf2acc7c939758c10ad9c6935cf1f7 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -72,10 +72,11 @@ Tests
   detection code works correctly (as was intended).
 
 - The MacOSX (both 10.1 and 10.2) tests will crash with SEGV in
-  test_re and test_sre due to the small default stack size.  Do
-  "ulimit -s 2048" before "make test" to avoid the failure.  Note that
-  this is a built-in bash command so if you're using a different
-  shell, the command may be different too.
+  test_re and test_sre due to the small default stack size.  If you
+  set the stack size to 2048 before doing a "make test" the failure
+  can be avoided.  If you're using the tcsh (the default on OSX), or
+  csh shells use "limit stacksize 2048" and for the bash shell, use
+  "ulimit -s 2048".
 
 Windows