summaryrefslogtreecommitdiff
path: root/Tools
Commit message (Collapse)AuthorAgeFilesLines
* Stop adding txt files twice.Martin v. Löwis2011-06-051-2/+0
|
* Add 2.7.2 UUIDsMartin v. Löwis2011-06-051-0/+2
|
* Issue #12057: Add cjkencodings directory to the Makefile and Tools/msi/msi.pyVictor Stinner2011-05-251-0/+2
|
* Denote 3.3.0 as the last supported Windows 2000 release.Brian Curtin2011-05-031-1/+1
| | | | This corresponds with change b9390aa12855 to PEP-11.
* pybench prep_times calculation error (closes #11895)Jesus Cea2011-04-251-1/+1
|
* In the Windows clean script for buildbots, also clear the build dirAntoine Pitrou2011-03-262-1/+7
| | | | (so that stale test files, which can be very large, get wiped out)
* #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-162-2/+2
|
* #11515: fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-152-3/+3
|
* #Issue 11424: merged fix from 2.6.Vinay Sajip2011-03-0763-1714/+3452
|\
| * Add updated .hgeol file and fix newlines in the 2.7 branch.Georg Brandl2011-03-0511-146/+146
| |
| * Merged revisions ↵R. David Murray2011-02-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 86542,87136,87216,87221,87228,87256,87337-87338,87372,87516,87571,88164 via svnmerge from svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86542 | r.david.murray | 2010-11-19 22:48:58 -0500 (Fri, 19 Nov 2010) | 2 lines Make test class name unique so that both test classes run. ........ r87136 | r.david.murray | 2010-12-08 17:53:00 -0500 (Wed, 08 Dec 2010) | 6 lines Have script_helper._assert_python strip refcount strings from stderr. This makes the output of the function and those that depend on it independent of whether or not they are being run under a debug build. ........ r87216 | r.david.murray | 2010-12-13 17:50:30 -0500 (Mon, 13 Dec 2010) | 2 lines #10698: fix typo in example. ........ r87221 | r.david.murray | 2010-12-13 19:55:46 -0500 (Mon, 13 Dec 2010) | 4 lines #10699: fix docstring for tzset: it does not take a parameter Thanks to Garrett Cooper for the fix. ........ r87228 | r.david.murray | 2010-12-13 21:25:43 -0500 (Mon, 13 Dec 2010) | 2 lines Turn on regrtest -W (rerun immediately) option for Windows, too. ........ r87256 | r.david.murray | 2010-12-14 21:19:14 -0500 (Tue, 14 Dec 2010) | 2 lines #10705: document what the values of debuglevel are and mean. ........ r87337 | r.david.murray | 2010-12-17 11:11:40 -0500 (Fri, 17 Dec 2010) | 2 lines #10559: provide instructions for accessing sys.argv when first mentioned. ........ r87338 | r.david.murray | 2010-12-17 11:29:07 -0500 (Fri, 17 Dec 2010) | 2 lines #10454: clarify the compileall docs and help messages. [changes to compileall.py were not backported, only the doc changes] ........ r87372 | r.david.murray | 2010-12-18 11:39:06 -0500 (Sat, 18 Dec 2010) | 2 lines #10728: the default for printing help is sys.stdout, not stderr. ........ r87516 | r.david.murray | 2010-12-27 15:09:32 -0500 (Mon, 27 Dec 2010) | 5 lines #7056: runtest and runtest_inner don't use testdir, so drop it from their sigs I've only tested regular runs and -j runs. If I've broken anything else I'm sure I'll hear about it sooner or later. ........ r87571 | r.david.murray | 2010-12-29 14:06:48 -0500 (Wed, 29 Dec 2010) | 2 lines Fix same typo in docs. ........ r88164 | r.david.murray | 2011-01-24 14:34:58 -0500 (Mon, 24 Jan 2011) | 12 lines #10960: fix 'stat' links, link to lstat from stat, general tidy of stat doc. Original patch by Michal Nowikowski, with some additions and wording fixes by me. I changed the wording from 'Performs a stat system call' to 'Performs the equivalent of a stat system call', since on Windows there are no stat/lstat system calls involved. I also extended Michal's breakout of the attributes into a list to the other paragraphs, and rearranged the order of the paragraphs in the 'stat' docs to make it flow better and put it in what I think is a more logical/useful order. ........
| * Merged revisions 85768-85771,85773,85777,85823,85825 via svnmerge fromGeorg Brandl2010-11-263-8/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85768 | georg.brandl | 2010-10-21 14:59:14 +0200 (Do, 21 Okt 2010) | 1 line #9919: fix off-by-one error in lineno command in Misc/gdbinit; also add newline to its output. ........ r85769 | georg.brandl | 2010-10-21 15:01:23 +0200 (Do, 21 Okt 2010) | 1 line Fix missing import. ........ r85770 | georg.brandl | 2010-10-21 15:29:10 +0200 (Do, 21 Okt 2010) | 1 line #3077: fix h2py substitution of character literals. ........ r85771 | georg.brandl | 2010-10-21 15:34:51 +0200 (Do, 21 Okt 2010) | 1 line #1203650: allow larger list of files in windows makefile for freeze. ........ r85773 | georg.brandl | 2010-10-21 15:45:52 +0200 (Do, 21 Okt 2010) | 1 line #4829: better error message for invalid file mode ........ r85777 | georg.brandl | 2010-10-21 17:44:51 +0200 (Do, 21 Okt 2010) | 1 line Add .hgeol file for the Mercurial EOL extension. ........ r85823 | georg.brandl | 2010-10-24 16:32:45 +0200 (So, 24 Okt 2010) | 1 line Fix style. ........ r85825 | georg.brandl | 2010-10-24 17:16:02 +0200 (So, 24 Okt 2010) | 1 line Add documentation about the default warnings filters. ........
| * Merged revisions 85766-85767 via svnmerge fromGeorg Brandl2010-11-263-58/+111
| | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85766 | georg.brandl | 2010-10-21 09:40:03 +0200 (Do, 21 Okt 2010) | 1 line #10159: sort completion matches before comparing to dir() result. ........ r85767 | georg.brandl | 2010-10-21 14:49:28 +0200 (Do, 21 Okt 2010) | 1 line #9095, #8912, #8999: add support in patchcheck for Mercurial checkouts, C file reindenting, and docs whitespace fixing. ........
| * Merged revisions 85253,85452-85454 via svnmerge fromGeorg Brandl2010-11-261-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85253 | georg.brandl | 2010-10-06 10:52:48 +0200 (Mi, 06 Okt 2010) | 1 line Copyedit of os.symlink() docs. ........ r85452 | georg.brandl | 2010-10-14 08:43:22 +0200 (Do, 14 Okt 2010) | 1 line #10046: small correction to atexit docs. ........ r85453 | georg.brandl | 2010-10-14 08:46:08 +0200 (Do, 14 Okt 2010) | 1 line #6825: small correction to split() docs. ........ r85454 | georg.brandl | 2010-10-14 08:48:47 +0200 (Do, 14 Okt 2010) | 1 line Mention 2to3. ........
| * Backport the distutils part of r83399 to fix #7645.Brian Curtin2010-11-221-0/+2
| |
| * Merged revisions 84487 via svnmerge fromMartin v. Löwis2010-11-141-1/+16
| | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r84487 | martin.v.loewis | 2010-09-04 16:38:09 +0200 (Sa, 04 Sep 2010) | 3 lines Issue #1303434: Include PDBs in release. Patch by James Lee and Daniel Stutzbach. ........
| * Add 2.7.1 UUIDs.Martin v. Löwis2010-10-251-0/+3
| |
| * Sorry, I committed into wrong branch. So reverted it.Hirokazu Yamamoto2010-09-281-2/+1
| |
| * Run test_ttk_guionly in verbose mode.Hirokazu Yamamoto2010-09-281-1/+2
| |
| * Merged revisions 84635-84636 via svnmerge fromAntoine Pitrou2010-09-081-27/+38
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r84635 | antoine.pitrou | 2010-09-08 22:57:48 +0200 (mer., 08 sept. 2010) | 5 lines Issue #9188: The gdb extension now handles correctly narrow (UCS2) as well as wide (UCS4) unicode builds for both the host interpreter (embedded inside gdb) and the interpreter under test. ........ r84636 | antoine.pitrou | 2010-09-08 23:07:40 +0200 (mer., 08 sept. 2010) | 4 lines Add a safety limit to the number of unicode characters we fetch (followup to r84635, suggested by Dave Malcolm). ........
| * Merged revisions 83833,83838-83839,83859,83878 via svnmerge fromFlorent Xicluna2010-08-091-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r83833 | florent.xicluna | 2010-08-08 18:25:27 +0200 (dim., 08 août 2010) | 2 lines Add test case for the HTTPResponse being an iterable. Follow-up of issue #4608. ........ r83838 | florent.xicluna | 2010-08-08 20:03:44 +0200 (dim., 08 août 2010) | 2 lines Typo. ........ r83839 | florent.xicluna | 2010-08-08 20:06:13 +0200 (dim., 08 août 2010) | 2 lines Issue #7564: Skip test_ioctl if another process is attached to /dev/tty. ........ r83859 | florent.xicluna | 2010-08-09 00:07:16 +0200 (lun., 09 août 2010) | 2 lines Fix #8530: Prevent stringlib fastsearch from reading beyond the front of an array. ........ r83878 | florent.xicluna | 2010-08-09 10:29:08 +0200 (lun., 09 août 2010) | 1 line Merge the 2to3 script from /sandbox/trunk/2to3/2to3, revision 72867 (latest). ........
| * Merged revisions 82872,82874 via svnmerge fromGeorg Brandl2010-07-141-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r82872 | georg.brandl | 2010-07-14 10:53:18 +0200 (Mi, 14 Jul 2010) | 1 line Remove XXX from text. ........ r82874 | georg.brandl | 2010-07-14 10:54:40 +0200 (Mi, 14 Jul 2010) | 1 line #9235: fix missing import of sys. ........
| * Display installer warning that Windows 2000 won'tMartin v. Löwis2010-06-041-3/+3
| | | | | | | | be supported in future releases.
| * Issue #5464: Implement plural forms in msgfmt.py.Martin v. Löwis2010-06-041-2/+25
| |
| * Make the ctl-C shutdown of serve.py prettier.R. David Murray2010-05-281-2/+5
| |
| * libpython.py: fix support of non-BMP unicode charactersVictor Stinner2010-05-201-0/+28
| | | | | | | | | | | | | | | | Forward port some code from Python3: * join surrogate pairs if sizeof(Py_UNICODE)==2 * Enable non-BMP test on narrow builds using u"\U0001D121" instead of unichr(0x1D121)
| * Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-56/+56
| |
| * Have the serve.py script announce the directory it isR. David Murray2010-05-061-0/+1
| | | | | | | | | | serving and which port it is serving it on (I can never remember the default port number it uses...)
| * In a number of places code still reversRonald Oussoren2010-05-052-8/+0
| | | | | | | | | | | | | | | | | | to "sys.platform == 'mac'" and that is dead code because it refers to a platform that is no longer supported (and hasn't been supported for several releases). Fixes issue #7908 for the trunk.
| * Issue #8437: Fix test_gdb failures, patch written by Dave MalcolmVictor Stinner2010-04-201-15/+15
| |
| * Issue #8279: Fix test_gdb failures.Martin v. Löwis2010-04-171-3/+18
| |
| * Issue #8374: Update the internal alias table in the :mod:`locale` moduleAntoine Pitrou2010-04-111-1/+1
| | | | | | | | to cover recent locale changes and additions.
| * Issue #8032: For gdb7, a python-gdb.py file is added to the build,Martin v. Löwis2010-04-012-0/+1395
| | | | | | | | allowing to use advanced gdb features when debugging Python.
| * #7643: Unicode codepoints VT (0x0B) and FF (0x0C) are linebreaks according ↵Florent Xicluna2010-03-301-6/+38
| | | | | | | | to Unicode Standard Annex #14.
| * Issue #8024: Update the Unicode database to 5.2Florent Xicluna2010-03-181-1/+1
| |
| * Integrate merge.py into msi.py.Martin v. Löwis2010-03-162-87/+79
| |
| * Remove py3k deprecation warnings from these Unicode tools.Florent Xicluna2010-03-153-42/+27
| |
| * Issue #6716: Quote -x arguments of compileall in MSI installer.Martin v. Löwis2010-03-151-1/+1
| |
| * Issue #7993: Add a test of IO packet processing bandwidth to ccbench.Antoine Pitrou2010-03-131-3/+150
| | | | | | | | | | It measures the number of UDP packets processed per second depending on the number of background CPU-bound Python threads.
| * Add 2.6 uuids.Martin v. Löwis2010-03-131-0/+8
| |
| * Move the xml test data to their own directory.Florent Xicluna2010-03-131-2/+3
| |
| * normalize shebang lines to #!/usr/bin/env pythonBenjamin Peterson2010-03-113-3/+3
| |
| * set svn:eol-style on various filesBenjamin Peterson2010-03-082-145/+145
| |
| * remove svn:executable from scripts without a shebang lineBenjamin Peterson2010-03-081-0/+0
| |
| * Add some notes about Tools/scripts/serve.py.Dirkjan Ochtman2010-02-242-0/+7
| |
| * Issue #8004: add a serve target to the Doc Makefile.Dirkjan Ochtman2010-02-241-0/+25
| |
| * Remove Tools/modulator, a reference to it in the docs, and a screenshot of it.Andrew M. Kuchling2010-02-2230-1450/+0
| | | | | | | | | | | | (I asked the BDFL first, and he approved removing it. The last actual bugfix to Tools/modulator was in 2001; since then all changes have been search-and-replace: string methods, whitespace fixes, etc.)
| * Add ccbench to the Tools directoryAntoine Pitrou2010-01-181-0/+462
| |
| * Add iobench to the Tools directory (see December python-dev discussion)Antoine Pitrou2010-01-181-0/+539
| |
| * Issue #7092: Fix the DeprecationWarnings emitted by the standard libraryAntoine Pitrou2010-01-041-3/+9
| | | | | | | | when using the -3 flag. Patch by Florent Xicluna.