[Python-checkins] python/dist/src/Misc NEWS,1.337.2.4.2.47,1.337.2.4.2.48

bwarsaw@users.sourceforge.net bwarsaw@users.sourceforge.net
Mon, 14 Oct 2002 11:22:03 -0700


Update of /cvsroot/python/python/dist/src/Misc
In directory usw-pr-cvs1:/tmp/cvs-serv30182

Modified Files:
      Tag: release22-maint
	NEWS 
Log Message:
I'd forgotten that tcsh was the default for 10.1, but SF's 10.1 system
uses bash and so does my 10.2 system.  "limit stacksize 2048" is the
right invocation for tcsh/csh.


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.337.2.4.2.47
retrieving revision 1.337.2.4.2.48
diff -C2 -d -r1.337.2.4.2.47 -r1.337.2.4.2.48
*** NEWS	14 Oct 2002 18:03:52 -0000	1.337.2.4.2.47
--- NEWS	14 Oct 2002 18:21:49 -0000	1.337.2.4.2.48
***************
*** 73,80 ****
  
  - 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.
  
  Windows
--- 73,81 ----
  
  - 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.  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