diff options
author | Georg Brandl <georg@python.org> | 2009-10-11 21:10:07 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-10-11 21:10:07 +0000 |
commit | 2bd92a59610a08f9444d0e4bca6ce6047716df20 (patch) | |
tree | e5e51689d776332a18f7371317ca07f5c830f2e7 | |
parent | beaf6a02f45fe667ddcb1fbdd24f1ea7189b2105 (diff) | |
download | cpython-git-2bd92a59610a08f9444d0e4bca6ce6047716df20.tar.gz |
Move find_recursionlimit.py to Tools/scripts; it is out of place in Misc.
-rw-r--r-- | Misc/HISTORY | 2 | ||||
-rw-r--r-- | Misc/NEWS | 2 | ||||
-rw-r--r-- | Misc/README | 1 | ||||
-rw-r--r-- | Tools/scripts/find_recursionlimit.py (renamed from Misc/find_recursionlimit.py) | 0 |
4 files changed, 2 insertions, 3 deletions
diff --git a/Misc/HISTORY b/Misc/HISTORY index 127b782c1f..43ee01fc37 100644 --- a/Misc/HISTORY +++ b/Misc/HISTORY @@ -9050,7 +9050,7 @@ limit is the maximum number of recursive calls that can be made by Python code. The limit exists to prevent infinite recursion from overflowing the C stack and causing a core dump. The default value is 1000. The maximum safe value for a particular platform can be found -by running Misc/find_recursionlimit.py. +by running Tools/scripts/find_recursionlimit.py. New Modules and Packages ------------------------ @@ -1566,7 +1566,7 @@ Extension Modules Tools/Demos ----------- -- Issue #3850: recursion tests in Misc/find_recursion_limit.py can raise +- Issue #3850: recursion tests in Tools/scripts/find_recursion_limit.py can raise AttributeError instead of RuntimeError, depending in which C API call exactly the recursion limit is exceeded. Consequently, both exception types are caught and silenced. diff --git a/Misc/README b/Misc/README index 920299b23c..1d8c22df0c 100644 --- a/Misc/README +++ b/Misc/README @@ -12,7 +12,6 @@ AIX-NOTES Notes for building Python on AIX BeOS-NOTES Notes for building on BeOS BeOS-setup.py setup.py replacement for BeOS, see BeOS-NOTES cheatsheet Quick summary of Python by Ken Manheimer -find_recursionlimit.py Script to find a value for sys.maxrecursionlimit gdbinit Handy stuff to put in your .gdbinit file, if you use gdb HISTORY News from previous releases -- oldest last HPUX-NOTES Notes about dynamic loading under HP-UX diff --git a/Misc/find_recursionlimit.py b/Tools/scripts/find_recursionlimit.py index 88e9bb58bc..88e9bb58bc 100644 --- a/Misc/find_recursionlimit.py +++ b/Tools/scripts/find_recursionlimit.py |