diff options
author | Armin Rigo <arigo@tunes.org> | 2006-07-25 18:38:39 (GMT) |
---|---|---|
committer | Armin Rigo <arigo@tunes.org> | 2006-07-25 18:38:39 (GMT) |
commit | b62efad943443c89d8bd7d33715393984b04c0e0 (patch) | |
tree | 69a7b058977924116be4474a2f4478340e483fd5 /Lib/test/crashers/recursive_call.py | |
parent | 5a9a2a3fe133000a72f69b367e552ad6180f5478 (diff) | |
download | cpython-b62efad943443c89d8bd7d33715393984b04c0e0.zip cpython-b62efad943443c89d8bd7d33715393984b04c0e0.tar.gz cpython-b62efad943443c89d8bd7d33715393984b04c0e0.tar.bz2 |
Document the crashers that will not go away soon as "won't fix",
and explain why.
Diffstat (limited to 'Lib/test/crashers/recursive_call.py')
-rw-r--r-- | Lib/test/crashers/recursive_call.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Lib/test/crashers/recursive_call.py b/Lib/test/crashers/recursive_call.py index 0776479..31c8963 100644 --- a/Lib/test/crashers/recursive_call.py +++ b/Lib/test/crashers/recursive_call.py @@ -1,6 +1,11 @@ #!/usr/bin/env python # No bug report AFAIK, mail on python-dev on 2006-01-10 + +# This is a "won't fix" case. It is known that setting a high enough +# recursion limit crashes by overflowing the stack. Unless this is +# redesigned somehow, it won't go away. + import sys sys.setrecursionlimit(1 << 30) |