This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author brett.cannon
Recipients aaronsw, aix-d, brett.cannon, bwpy
Date 2007-11-15.20:44:39
SpamBayes Score 0.060203396
Marked as misclassified No
Message-id <1195159480.24.0.836701703952.issue1430436@psf.upfronthosting.co.za>
In-reply-to
Content
And under 2.6 on OS X.  I doubt this is a BSD thing but more of a
recursion depth issue.

And I don't think there is anything to fix here.  The recursion depth is
a per-thread thing, and this test is blowing the C stack before the
recursion depth is reached.  If you drop the recursion limit lower the
proper exception is raised (I had to drop mine down to 400 to trigger
the exception).

So this is not a Python issue, per-se, just a limitation of the C stack
and how things are implemented.  While we do everything we can to
prevent crashes, this just can't be helped as the C stack is not under
our control.

Closing as invalid.
History
Date User Action Args
2007-11-15 20:44:40brett.cannonsetspambayes_score: 0.0602034 -> 0.060203396
recipients: + brett.cannon, aaronsw, aix-d, bwpy
2007-11-15 20:44:40brett.cannonsetspambayes_score: 0.0602034 -> 0.0602034
messageid: <1195159480.24.0.836701703952.issue1430436@psf.upfronthosting.co.za>
2007-11-15 20:44:40brett.cannonlinkissue1430436 messages
2007-11-15 20:44:39brett.cannoncreate