summaryrefslogtreecommitdiffstats
path: root/Tools
Commit message (Collapse)AuthorAgeFilesLines
* Drop cabarc artifact.Martin v. Löwis2010-09-041-1/+0
|
* Issue #1303434: Include PDBs in release.Martin v. Löwis2010-09-041-1/+16
| | | | Patch by James Lee and Daniel Stutzbach.
* Stop packaging versioncheck.Martin v. Löwis2010-08-281-1/+1
|
* Replace cabarc with FCICreate.Martin v. Löwis2010-08-281-36/+4
|
* Disable deletion of openssl again.Martin v. Löwis2010-08-251-2/+1
|
* Fix reindent-rst.py: it works on binary filesVictor Stinner2010-08-181-2/+2
|
* #5127: Even on narrow unicode builds, the C functions that access the UnicodeAmaury Forgeot d'Arc2010-08-181-37/+4
| | | | | | | | | | Database (Py_UNICODE_TOLOWER, Py_UNICODE_ISDECIMAL, and others) now accept and return characters from the full Unicode range (Py_UCS4). The differences from Python code are few: - unicodedata.numeric(), unicodedata.decimal() and unicodedata.digit() now return the correct value for large code points - repr() may consider more characters as printable.
* libpython.py: py-bt commands escape unencodable charactersVictor Stinner2010-08-171-1/+9
| | | | | | | Encode unicode strings to the terminal encoding with backslashreplace error (as Python does for sys.stderr) before writing them to sys.stdout. It fixes UnicodeEncodeError on writing non-ascii characters in an ascii terminal (C locale: ASCII encoding).
* Fix ``Tools/scripts/checkpyc.py`` after PEP 3147.Florent Xicluna2010-08-091-17/+20
|
* Clean up syntax for some scripts.Florent Xicluna2010-08-097-87/+115
|
* Merge the 2to3 script from /sandbox/trunk/2to3/2to3, revision 72867 (latest).Florent Xicluna2010-08-091-2/+1
|
* Change pyc removal to support __pycache__.Martin v. Löwis2010-08-061-3/+10
|
* Add various missing files.Martin v. Löwis2010-08-032-12/+37
| | | | Improve detection of unpackaged files.
* Issue #8867: Fix `Tools/scripts/serve.py` to work with files containingAntoine Pitrou2010-08-031-1/+1
| | | | non-ASCII content.
* Fix unicode literal.Georg Brandl2010-08-021-1/+1
|
* Make the framer run (still generates wrong code for module creation though.)Georg Brandl2010-08-022-2/+2
|
* Update README, remove obsolete scripts.Georg Brandl2010-08-029-993/+62
|
* Update README for Tools.Georg Brandl2010-08-021-18/+27
|
* Remove faqwiz tool.Georg Brandl2010-08-026-1620/+0
|
* Minimum fixes to make freeze.py do something useful.Georg Brandl2010-08-022-8/+7
|
* Make the Pynche tool work with Python 3.Georg Brandl2010-08-028-28/+32
|
* #4280: remove outdated "versionchecker" tool.Georg Brandl2010-08-024-206/+0
|
* Package some new files that are needed for running the test suite from the ↵Georg Brandl2010-08-011-0/+4
| | | | MSI package.
* Drop webchecker and BerkeleyDB license.Martin v. Löwis2010-07-311-2/+1
|
* From Martin: New UUIDs for the 3.2 release series.v3.2a1Georg Brandl2010-07-311-0/+8
|
* Truly uncomment rm lines.Martin v. Löwis2010-07-311-2/+2
|
* Delete openssl checkouts.Martin v. Löwis2010-07-311-1/+2
|
* Update OpenSSL version.Martin v. Löwis2010-07-311-2/+2
|
* #9235: fix missing import of sys.Georg Brandl2010-07-141-0/+1
|
* Remove unused code that would raise a NameError.Georg Brandl2010-07-141-3/+0
|
* Issue #8974: fix print calls in msgfmt.py.Martin v. Löwis2010-07-111-2/+2
|
* Do some basic refactoring. Along the way also list what files had theirBrett Cannon2010-07-041-14/+32
| | | | | | whitespace cleaned up and do the proper plurality for "N file(s)" based on N. Refactoring closes issue8912. Thanks to Éric Araujo for the patch.
* Add brief explanation; remove no-longer-working linkAndrew M. Kuchling2010-07-041-3/+1
|
* Remove nonexistent tools from Tools README.Mark Dickinson2010-07-031-11/+0
|
* remove old, outdated toolBenjamin Peterson2010-06-257-2107/+0
|
* Port to Python 3.Martin v. Löwis2010-06-041-9/+21
|
* Merged revisions 81697 via svnmerge fromMartin v. Löwis2010-06-041-2/+25
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81697 | martin.v.loewis | 2010-06-04 20:04:42 +0200 (Fr, 04 Jun 2010) | 2 lines Issue #5464: Implement plural forms in msgfmt.py. ........
* Merged revisions 81587 via svnmerge fromR. David Murray2010-05-311-2/+5
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81587 | r.david.murray | 2010-05-28 14:17:20 -0400 (Fri, 28 May 2010) | 2 lines Make the ctl-C shutdown of serve.py prettier. ........
* Issue #8559: improve unicode support of (gdb) libpython.pyVictor Stinner2010-05-191-29/+46
| | | | | | | | | * Escape non printable characters (use locale.getpreferredencoding()) * Fix support of surrogate pairs * test_gdb.py: use ascii() instead of repr() in gdb program arguments to avoid encoding issues * Fix test_strings() of test_gdb.py for encoding different than UTF-8 (eg. ACSII)
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-56/+56
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81029 | antoine.pitrou | 2010-05-09 16:46:46 +0200 (dim., 09 mai 2010) | 3 lines Untabify C files. Will watch buildbots. ........
* Merged revisions 80849 via svnmerge fromR. David Murray2010-05-061-0/+1
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80849 | r.david.murray | 2010-05-05 20:59:04 -0400 (Wed, 05 May 2010) | 4 lines Have the serve.py script announce the directory it is serving and which port it is serving it on (I can never remember the default port number it uses...) ........
* Remove traces of MacOS9 support.Ronald Oussoren2010-05-052-8/+0
| | | | Fix for issue #7908
* Issue #8380: Port gdb/libpython to 3.x.Martin v. Löwis2010-04-211-37/+188
|
* Adapt libpython.py and test_gdb.py to Python3Victor Stinner2010-04-211-5/+5
| | | | | * Rename PyStringObjectPtr to PyBytesObjectPtr * Replace PyObject_Print by textiowrapper_write
* Merged revisions 79986-79987,80156 via svnmerge fromMartin v. Löwis2010-04-211-2/+17
| | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r79986 | martin.v.loewis | 2010-04-12 07:18:16 +0200 (Mo, 12 Apr 2010) | 2 lines Issue #8330: Fix expected output in test_gdb. ........ r79987 | martin.v.loewis | 2010-04-12 07:22:25 +0200 (Mo, 12 Apr 2010) | 2 lines Re-enable all tests, to see which ones fail on the buildbots. ........ r80156 | martin.v.loewis | 2010-04-18 00:40:40 +0200 (So, 18 Apr 2010) | 2 lines Issue #8279: Fix test_gdb failures. ........
* Merged revisions 80288 via svnmerge fromVictor Stinner2010-04-201-15/+15
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80288 | victor.stinner | 2010-04-21 00:28:31 +0200 (mer., 21 avril 2010) | 2 lines Issue #8437: Fix test_gdb failures, patch written by Dave Malcolm ........
* Merged revisions 79977 via svnmerge fromAntoine Pitrou2010-04-111-1/+1
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r79977 | antoine.pitrou | 2010-04-12 00:32:39 +0200 (lun., 12 avril 2010) | 4 lines Issue #8374: Update the internal alias table in the :mod:`locale` module to cover recent locale changes and additions. ........
* Merged revisions 79548,79557,79616-79617,79716,79778,79795,79803,79896 via ↵Benjamin Peterson2010-04-112-0/+1395
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r79548 | martin.v.loewis | 2010-04-01 02:40:51 -0500 (Thu, 01 Apr 2010) | 3 lines Issue #8032: For gdb7, a python-gdb.py file is added to the build, allowing to use advanced gdb features when debugging Python. ........ r79557 | antoine.pitrou | 2010-04-01 12:56:57 -0500 (Thu, 01 Apr 2010) | 5 lines Issue #8281: rename test_gdb_sample.py to gdb_sample.py, otherwise it gets picked as a regular test by regrtest.py, and fails. ........ r79616 | mark.dickinson | 2010-04-02 15:22:21 -0500 (Fri, 02 Apr 2010) | 1 line Add python.exe-gdb.py to svn:ignore, for the benefit of OS X developers. ........ r79617 | mark.dickinson | 2010-04-02 15:34:26 -0500 (Fri, 02 Apr 2010) | 1 line Add python-gdb.py and python.exe-gdb.py to distclean target in Makefile. ........ r79716 | martin.v.loewis | 2010-04-03 13:54:07 -0500 (Sat, 03 Apr 2010) | 2 lines Don't install python-gdb.py as an executable. ........ r79778 | r.david.murray | 2010-04-04 20:34:50 -0500 (Sun, 04 Apr 2010) | 3 lines Issue 8287: try to fix the gdb-python install errors on Solaris and FreeBSD. Patch by Dave Malcolm. ........ r79795 | ronald.oussoren | 2010-04-05 06:21:21 -0500 (Mon, 05 Apr 2010) | 7 lines Ensure that the gdb hooks can be installed when srcdir != builddir. Without this patch it is no longer possible to build python when you don't run configure from the root of the source tree. ........ r79803 | r.david.murray | 2010-04-05 11:28:49 -0500 (Mon, 05 Apr 2010) | 3 lines Issue 8316: make test_gdb robust in the face of differing terminal widths. Patch by Dave Malcolm. ........ r79896 | martin.v.loewis | 2010-04-07 14:11:32 -0500 (Wed, 07 Apr 2010) | 2 lines Issue #8337: Disable the remaining test also for now. ........
* Merged revisions 79494,79496 via svnmerge fromFlorent Xicluna2010-03-301-5/+24
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r79494 | florent.xicluna | 2010-03-30 10:24:06 +0200 (mar, 30 mar 2010) | 2 lines #7643: Unicode codepoints VT (0x0B) and FF (0x0C) are linebreaks according to Unicode Standard Annex #14. ........ r79496 | florent.xicluna | 2010-03-30 18:29:03 +0200 (mar, 30 mar 2010) | 2 lines Highlight the change of behavior related to r79494. Now VT and FF are linebreaks. ........
* Merged revisions 78779 via svnmerge fromBenjamin Peterson2010-03-211-0/+0
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r78779 | benjamin.peterson | 2010-03-07 20:11:06 -0600 (Sun, 07 Mar 2010) | 1 line remove svn:executable from scripts without a shebang line ........