Skip to content

Commit 93d15cd

Browse files
committed
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. ........
1 parent 320b801 commit 93d15cd

4 files changed

Lines changed: 19 additions & 10 deletions

File tree

Misc/HISTORY

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10435,7 +10435,7 @@ limit is the maximum number of recursive calls that can be made by
1043510435
Python code. The limit exists to prevent infinite recursion from
1043610436
overflowing the C stack and causing a core dump. The default value is
1043710437
1000. The maximum safe value for a particular platform can be found
10438-
by running Misc/find_recursionlimit.py.
10438+
by running Tools/scripts/find_recursionlimit.py.
1043910439

1044010440
New Modules and Packages
1044110441
------------------------

Misc/README

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,24 +9,32 @@ Files found here
99

1010
ACKS Acknowledgements
1111
AIX-NOTES Notes for building Python on AIX
12+
build.sh Script to build and test latest Python from the repository
1213
cheatsheet Quick summary of Python by Ken Manheimer
13-
find_recursionlimit.py Script to find a value for sys.maxrecursionlimit
14+
developers.txt A history of who got developer permissions, and why
1415
gdbinit Handy stuff to put in your .gdbinit file, if you use gdb
1516
HISTORY News from previous releases -- oldest last
16-
HPUX-NOTES Notes about dynamic loading under HP-UX
1717
indent.pro GNU indent profile approximating my C style
18+
maintainers.txt A list of maintainers for library modules
1819
NEWS News for this release (for some meaning of "this")
20+
NEWS.help How to edit NEWS
1921
Porting Mini-FAQ on porting to new platforms
2022
PURIFY.README Information for Purify users
2123
pymemcompat.h Memory interface compatibility file.
2224
python.man UNIX man page for the python interpreter
2325
python-mode.el Emacs mode for editing Python programs
26+
python.pc.in Package configuration info template for pkg-config
2427
python-wing.wpr Wing IDE project file
2528
README The file you're reading now
29+
README.coverity Information about running Coverity's Prevent on Python
30+
README.klocwork Information about running Klocwork's K7 on Python
31+
README.OpenBSD Help for building problems on OpenBSD
2632
README.valgrind Information for Valgrind users, see valgrind-python.supp
2733
RFD Request For Discussion about a Python newsgroup
2834
RPM (Old) tools to build RPMs
29-
SpecialBuilds.txt Describes extra symbols you can set for debug builds
3035
setuid-prog.c C helper program for set-uid Python scripts
36+
SpecialBuilds.txt Describes extra symbols you can set for debug builds
37+
TextMate A TextMate bundle for Python development
38+
valgrind-python.supp Valgrind suppression file, see README.valgrind
3139
vgrindefs Python configuration for vgrind (a generic pretty printer)
32-
valgrind-python.supp Valgrind suppression file, see README.valgrind
40+
Vim Python development utilities for the Vim editor

Tools/scripts/README

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ db2pickle.py Dump a database file to a pickle
1919
diff.py Print file diffs in context, unified, or ndiff formats
2020
dutree.py Format du(1) output as a tree sorted by size
2121
eptags.py Create Emacs TAGS file for Python modules
22-
finddiv.py A grep-like tool that looks for division operators.
22+
find_recursionlimit.py Find the maximum recursion limit on this machine
23+
finddiv.py A grep-like tool that looks for division operators
2324
findlinksto.py Recursively find symbolic links to a given path prefix
2425
findnocoding.py Find source files which need an encoding declaration
2526
fixcid.py Massive identifier substitution on C source files
@@ -28,8 +29,8 @@ fixheader.py Add some cpp magic to a C include file
2829
fixnotice.py Fix the copyright notice in source files
2930
fixps.py Fix Python scripts' first line (if #!)
3031
ftpmirror.py FTP mirror script
31-
google.py Open a webbrowser with Google.
32-
gprof2html.py Transform gprof(1) output into useful HTML.
32+
google.py Open a webbrowser with Google
33+
gprof2html.py Transform gprof(1) output into useful HTML
3334
h2py.py Translate #define's into Python assignments
3435
idle Main program to start IDLE
3536
ifdef.py Remove #if(n)def groups from C sources
@@ -55,9 +56,9 @@ pysource.py Find Python source files
5556
redemo.py Basic regular expression demonstration facility
5657
reindent.py Change .py files to use 4-space indents.
5758
rgrep.py Reverse grep through a file (useful for big logfiles)
58-
setup.py Install all scripts listed here.
59+
setup.py Install all scripts listed here
5960
suff.py Sort a list of files by suffix
60-
svneol.py Sets svn:eol-style on all files in directory.
61+
svneol.py Sets svn:eol-style on all files in directory
6162
texcheck.py Validate Python LaTeX formatting (Raymond Hettinger)
6263
texi2html.py Convert GNU texinfo files into HTML
6364
treesync.py Synchronize source trees (very ideosyncratic)

0 commit comments

Comments
 (0)