diff options
author | Georg Brandl <georg@python.org> | 2009-10-11 21:24:34 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-10-11 21:24:34 (GMT) |
commit | 93d15cd2518921ed01731f90e1ed1ecd3945c8bc (patch) | |
tree | 3abfd823a07fec154f03977a0ea7aaf84c43f345 /Misc/HISTORY | |
parent | 320b8010e7b6cfabe4bbed41a6a86a2dc1bd8343 (diff) | |
download | cpython-93d15cd2518921ed01731f90e1ed1ecd3945c8bc.zip cpython-93d15cd2518921ed01731f90e1ed1ecd3945c8bc.tar.gz cpython-93d15cd2518921ed01731f90e1ed1ecd3945c8bc.tar.bz2 |
Merged revisions 75370-75372 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r75370 | georg.brandl | 2009-10-11 23:10:07 +0200 (So, 11 Okt 2009) | 1 line
Move find_recursionlimit.py to Tools/scripts; it is out of place in Misc.
........
r75371 | georg.brandl | 2009-10-11 23:14:37 +0200 (So, 11 Okt 2009) | 1 line
Add find_recursionlimit.py to README.
........
r75372 | georg.brandl | 2009-10-11 23:17:14 +0200 (So, 11 Okt 2009) | 1 line
Update Misc/README.
........
Diffstat (limited to 'Misc/HISTORY')
-rw-r--r-- | Misc/HISTORY | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/HISTORY b/Misc/HISTORY index b2d3fba..4fb749a 100644 --- a/Misc/HISTORY +++ b/Misc/HISTORY @@ -10435,7 +10435,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 ------------------------ |