summaryrefslogtreecommitdiffstats
path: root/Tools
Commit message (Collapse)AuthorAgeFilesLines
* Fix bytes/str issues in get-remote-certificate.py.Georg Brandl2010-10-281-7/+11
|
* Fix import.Georg Brandl2010-10-261-2/+2
|
* #1203650: allow larger list of files in windows makefile for freeze.Georg Brandl2010-10-211-5/+7
|
* #3077: fix h2py substitution of character literals.Georg Brandl2010-10-211-1/+1
|
* Fix missing import.Georg Brandl2010-10-211-2/+1
|
* #9095, #8912, #8999: add support in patchcheck for Mercurial checkouts, C ↵Georg Brandl2010-10-213-33/+68
| | | | file reindenting, and docs whitespace fixing.
* Fix Issue10140 - Tools/scripts/pathfix.py: add option to preserve timestampsSenthil Kumaran2010-10-191-3/+18
|
* Issue #10117: Tools/scripts/reindent.py now accepts source files thatAlexander Belopolsky2010-10-181-2/+4
| | | | | use encoding other than ASCII or UTF-8. Source encoding is preserved when reindented code is written to a file.
* libpython: implementation of os.fsencode() with surrogateescape error handlerVictor Stinner2010-10-171-2/+20
|
* Issue #9308: Removed redundant coding cookies. Added tests forAlexander Belopolsky2010-10-152-3/+1
| | | | | importing encoded modules that do not depend on specific stdlib modules being encoded in a certain way.
* Mention 2to3.Georg Brandl2010-10-141-2/+3
|
* Upgrade to Unicode 6.0.0.Martin v. Löwis2010-10-111-58/+77
| | | | | | | | makeunicodedata.py: download all data files from unicode.org, switch to extracting Unihan data from zip file. Read linebreakprops and derivednormalizationprops even for old versions, even though they are not used in delta records. test:unicode.py: U+11000 is now assigned, use U+14000 instead.
* Reverted to r70917.Hirokazu Yamamoto2010-09-281-2/+1
|
* Changed order to see other test results. (Also temporary commit)Hirokazu Yamamoto2010-09-281-1/+1
|
* Run test_ttk_guionly in verbose mode. (This commit is temporary)Hirokazu Yamamoto2010-09-281-1/+2
|
* Revert previous commit.Hirokazu Yamamoto2010-09-201-16/+1
|
* Windows7 buildbot debug trial. (Probably impossible)Hirokazu Yamamoto2010-09-201-1/+16
|
* #9210: remove --with-wctype-functions configure option.Amaury Forgeot d'Arc2010-09-121-4/+0
| | | | | | | | The internal unicode database is now always used. (after 5 years: see http://mail.python.org/pipermail/python-dev/2004-December/050193.html )
* gdb: fix representation of non-printable surrogate pairs, and workaroundAntoine Pitrou2010-09-081-8/+11
| | | | a bug in ascii().
* Add a safety limit to the number of unicode characters we fetchAntoine Pitrou2010-09-081-1/+2
| | | | (followup to r84635, suggested by Dave Malcolm).
* Issue #9188: The gdb extension now handles correctly narrow (UCS2) as wellAntoine Pitrou2010-09-081-13/+43
| | | | | as wide (UCS4) unicode builds for both the host interpreter (embedded inside gdb) and the interpreter under test.
* Add an option to choose the IO module under test (allows to benchAntoine Pitrou2010-09-061-0/+6
| | | | e.g. the pure Python implementation in _pyio).
* 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
|