[Python-checkins] python/dist/src README,1.136.4.9,1.136.4.10

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


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

Modified Files:
      Tag: release22-maint
	README 
Log Message:
There was a typo in the MacOSX section regarding the stacksize issue.
There's no limit command near as I can tell.  Should be the bash
builtin ulimit command.


Index: README
===================================================================
RCS file: /cvsroot/python/python/dist/src/README,v
retrieving revision 1.136.4.9
retrieving revision 1.136.4.10
diff -C2 -d -r1.136.4.9 -r1.136.4.10
*** README	14 Oct 2002 12:35:53 -0000	1.136.4.9
--- README	14 Oct 2002 18:03:04 -0000	1.136.4.10
***************
*** 450,456 ****
          future release.
  
! Mac OS X 10: One of the regular expression tests fails
!         with a SEGV due to the small stack size used by default, if you do
!         "limit stacksize 2048" before "make test" it should work.
  
          On naked Darwin you may want to add the configure option
--- 450,458 ----
          future release.
  
! MacOSX: The tests will crash on both 10.1 and 10.2 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.
  
          On naked Darwin you may want to add the configure option