[Python-Dev] stack check on Unix: any suggestions?

Charles G Waldman cgw@fnal.gov
Fri, 1 Sep 2000 11:09:02 -0500 (CDT)


Skip Montanaro writes:
 > 
 > Makes no difference:
 > 
 >     % ulimit -a
 >     stack size (kbytes)         unlimited
 >     % ./python Misc/find_recursionlimit.py
 >     Limit of 2400 is fine
 >     repr
 >     Segmentation fault
 > 
 > Skip

This means that you're not hitting the rlimit at all but getting a
real segfault!  Time to do setrlimit -c unlimited and break out GDB,
I'd say.