aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Tools/scripts/find_recursionlimit.py
Commit message (Collapse)AuthorAge
* gh-97669: Remove outdated example scripts (#97675)Victor Stinner2022-10-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove outdated example scripts of the Tools/scripts/ directory. A copy can be found in the old-demos project: https://github.com/gvanrossum/old-demos Removed scripts (39): * byext.py * byteyears.py * cleanfuture.py * copytime.py * crlf.py * db2pickle.py * dutree.doc * dutree.py * find-uname.py * find_recursionlimit.py * finddiv.py * findlinksto.py * findnocoding.py * fixcid.py * fixdiv.py * fixheader.py * fixnotice.py * fixps.py * get-remote-certificate.py * google.py * highlight.py * ifdef.py * import_diagnostics.py * lfcr.py * linktree.py * lll.py * mailerdaemon.py * make_ctype.py * mkreal.py * objgraph.py * pdeps.py * pickle2db.py * pindent.py * pysource.py * reindent-rst.py * rgrep.py * suff.py * texi2html.py * which.py Changes: * Remove test_fixcid, test_lll, test_pdeps and test_pindent of test.test_tools. * Remove get-remote-certificate.py changelog entry, since the script was removed. Note: there is a copy of crlf.py in Lib/test/test_lib2to3/data/.
* Issue #19235: Add new RecursionError exception. Patch by Georg Brandl.Yury Selivanov2015-07-03
|
* Issue #16714: use 'raise' exceptions, don't 'throw'.Andrew Svetlov2012-12-18
|\ | | | | | | Patch by Serhiy Storchaka.
* | Issue #5765: Also check the compiler when finding the recursion limitNick Coghlan2012-11-05
|/
* #14490, #14491: add 'sundry'-style import tests for Tools/scripts.R David Murray2012-04-04
| | | | | | This patch changes a few of the scripts to have __name__=='__main__' clauses so that they are importable without running. Also fixes the syntax errors revealed by the tests.
* Fix missing or wrong shebangs and missing executable bits for scripts (#10318)Éric Araujo2011-07-26
|
* Issue #10987: Fix the recursion limit handling in the _pickle module.Antoine Pitrou2011-01-23
|
* convert shebang lines: python -> python3Benjamin Peterson2010-03-11
|
* Merged revisions 75370-75372 via svnmerge fromGeorg Brandl2009-10-11
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. ........