Re: [Python-Dev] Is Lib/test/crashers/recursive_call.py really a crasher?

2006-06-28 Thread Armin Rigo
Hi Brett, On Tue, Jun 27, 2006 at 10:32:08AM -0700, Brett Cannon wrote: OK, with you and Thomas both wanting to keep it I will let it be. I just won't worry about fixing it myself during my interpreter hardening crusade. I agree with this too. If I remember correctly, you even mentioned in

[Python-Dev] Is Lib/test/crashers/recursive_call.py really a crasher?

2006-06-27 Thread Brett Cannon
If you look at that crasher, you will notice that recursion depth is set to 1 30 before any code is run. If you remove that setting high setting and go with the default then the test doesn't crash and raises the appropriate RuntimeError. Setting the recursion depth to such a high number will

Re: [Python-Dev] Is Lib/test/crashers/recursive_call.py really a crasher?

2006-06-27 Thread Thomas Wouters
On 6/27/06, Brett Cannon [EMAIL PROTECTED] wrote: If you look at that crasher, you will notice that recursion depth is set to 1 30 before any code is run. If you remove that setting high setting and go with the default then the test doesn't crash and raises the appropriate RuntimeError. Setting

Re: [Python-Dev] Is Lib/test/crashers/recursive_call.py really a crasher?

2006-06-27 Thread Brett Cannon
On 6/27/06, Thomas Wouters [EMAIL PROTECTED] wrote: On 6/27/06, Brett Cannon [EMAIL PROTECTED] wrote: If you look at that crasher, you will notice that recursion depth is set to 1 30 before any code is run. If you remove that setting high setting and go with the default then the test doesn't

Re: [Python-Dev] Is Lib/test/crashers/recursive_call.py really a crasher?

2006-06-27 Thread Michael Hudson
Brett Cannon [EMAIL PROTECTED] writes: If you look at that crasher, you will notice that recursion depth is set to 1 30 before any code is run. If you remove that setting high setting and go with the default then the test doesn't crash and raises the appropriate RuntimeError. Setting the

Re: [Python-Dev] Is Lib/test/crashers/recursive_call.py really a crasher?

2006-06-27 Thread Brett Cannon
On 6/27/06, Michael Hudson [EMAIL PROTECTED] wrote: Brett Cannon [EMAIL PROTECTED] writes: If you look at that crasher, you will notice that recursion depth is set to 1 30 before any code is run.If you remove that setting high setting and go with the default then the test doesn't crash and