summaryrefslogtreecommitdiff
path: root/Tools
Commit message (Collapse)AuthorAgeFilesLines
* Add lib2to3.__main__ to make it easier for debugging purposes to run 2to3.Brett Cannon2011-02-221-3/+2
|
* Issue #11135: Remove redundant doc field from PyType_Spec.Martin v. Löwis2011-02-111-2/+1
| | | | Reviewed by Georg Brandl.
* Add uuid for 3.2rc3.Martin v. Löwis2011-02-111-0/+1
|
* Issue #10987: Fix the recursion limit handling in the _pickle module.Antoine Pitrou2011-01-231-2/+3
|
* Package zip_cp437_header.zip.Martin v. Löwis2011-01-151-2/+1
| | | | Don't try to package subprocessdata/*.py twice.
* Avoid ResourceWarnings in ccbenchAntoine Pitrou2011-01-151-12/+13
|
* Update description of Tools/unicodeMichael Foord2011-01-031-2/+3
|
* Enable unittest.TestCase to be instantiated without providing a method name.Michael Foord2011-01-031-2/+4
| | | | Changed unittestgui to show number of discovered tests in the status bar.
* Issue 10502: addition of unittestgui to Tools/Michael Foord2011-01-033-2/+498
|
* Update README, remove empty directory.Georg Brandl2010-12-301-2/+4
|
* Harmonize docstrings. Move redemo from Tools/scripts to Tools/demo. Add a ↵Georg Brandl2010-12-3015-151/+196
| | | | README file to Tools/demo.
* More cleanup: Move some demos into a dedicated Tools/demo dir, move 2to3 ↵Georg Brandl2010-12-3019-0/+2560
| | | | demo to Tools, and remove all the other Demo content.
* Fix NameErrors.Georg Brandl2010-12-301-3/+4
|
* Clean up tools: remove "world" and "framer", move single SSL script to scripts/.Georg Brandl2010-12-3015-1559/+0
|
* Remove some of the old demos. (Put a few somewhere else.)Georg Brandl2010-12-303-0/+880
|
* Upgrade to sqlite3 3.7.4.Martin v. Löwis2010-12-171-4/+4
|
* Upgrade Tcl/Tk to 8.5.9.Martin v. Löwis2010-12-173-13/+13
|
* Turn on regrtest -W (rerun immediately) option for Windows, too.R. David Murray2010-12-141-1/+1
|
* issue7213: Open the pipes used by subprocesses with the FD_CLOEXEC flag fromGregory P. Smith2010-12-131-0/+2
| | | | | the C code, using pipe2() when available. Adds unittests for close_fds and cloexec behaviors.
* Automate build for python3.dll.Martin v. Löwis2010-12-051-0/+6
| | | | Package missing files.
* Merge branches/pep-0384.Martin v. Löwis2010-12-031-0/+200
|
* Issue #9598: untabify.py will now respect encoding cookie in the files it ↵Alexander Belopolsky2010-11-301-3/+4
| | | | processes
* Issue #10552: Partially fixed a sort error in Tools/unicode/gencodec.pyAlexander Belopolsky2010-11-301-7/+10
|
* Issue #10459: Update CJK character names to Unicode 6.0.Martin v. Löwis2010-11-221-2/+19
|
* Fix resource warning from patchcheck.pyÉric Araujo2010-11-221-6/+9
|
* Add UUID for 3.2a4Martin v. Löwis2010-11-121-0/+1
|
* Remove traces of setuptools (#10341)Éric Araujo2010-11-061-3/+0
|
* 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
|