summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Fix #11509. Significantly increase test coverage for fileinput.briancurtin2011-03-151-15/+605
| | | | Patch by Denver Coneybeare at the PyCon 2011 Sprints.
* Typo.Eric V. Smith2011-03-151-1/+1
|
* merge 1579808ef25bGregory P. Smith2011-03-151-2/+5
|\
| * merge 141bbcb19c06Gregory P. Smith2011-03-151-2/+5
| |\
| | * Fix the @test_NNNN_tmp file terds being left in whatever your $PWD wasGregory P. Smith2011-03-151-2/+5
| | | | | | | | | | | | when test_subprocess was run.
* | | #11515: Merge with 3.2.Ezio Melotti2011-03-1526-31/+31
|\ \ \ | |/ /
| * | #11515: Merge with 3.1.Ezio Melotti2011-03-1525-30/+30
| |\ \ | | |/
| | * #11515: fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-1522-25/+25
| | |
* | | Merge long Japanese header fix from 3.2.R David Murray2011-03-152-1/+15
|\ \ \ | |/ /
| * | Fix header encoding of long headers when using euc-jp and shift_jis.R David Murray2011-03-152-1/+15
| | | | | | | | | | | | | | | | | | | | | When a header was long enough to need to be split across lines, the input charset name was used instead of the output charset name in the encoded words. This make a difference only for the two charsets above.
* | | Merge with hg.python.org.Reid Kleckner2011-03-1412-64/+197
|\ \ \
| * \ \ merge defaultMichael Foord2011-03-142-0/+37
| |\ \ \
| | * \ \ Merge with remoteNick Coghlan2011-03-144-52/+96
| | |\ \ \
| | * | | | Close #11505: Improve string.py coverageNick Coghlan2011-03-142-0/+37
| | | | | |
| * | | | | Closes issue 11407. TestCase.run returns the result object used or createdMichael Foord2011-03-142-5/+40
| | |/ / / | |/| | |
| * | | | Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified ↵Ronald Oussoren2011-03-142-49/+90
| |\ \ \ \ | | | |/ / | | |/| | | | | | | IP addresses in the proxy exception list.
| | * | | Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified ↵Ronald Oussoren2011-03-142-49/+90
| | |\ \ \ | | | | |/ | | | |/| | | | | | IP addresses in the proxy exception list.
| | | * | Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified ↵Ronald Oussoren2011-03-142-49/+90
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | IP addresses in the proxy exception list Patch by Scott Wilson.
| | | * | Fix #11491. When dbm.open was called with a file which already exists andbriancurtin2011-03-142-3/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the "flag" argument is "n", dbm.error was being raised. As documented, dbm.open(...,flag='n') will now "Always create a new, empty database, open for reading and writing", regardless of a previous file existing.
| * | | | Merge linesep docstring changes from 3.2.R David Murray2011-03-142-3/+6
| |\ \ \ \ | | |/ / / | | | | / | | |_|/ | |/| |
| | * | Harmonize linesep docstrings, and fix the quoting of \r\nR David Murray2011-03-142-3/+6
| | | |
| * | | Merge #11496 from 3.2.R David Murray2011-03-141-0/+4
| |\ \ \ | | |/ /
| | * | #11496: skip history test if clear_history is not available.R David Murray2011-03-141-0/+4
| | | | | | | | | | | | | | | | Patch by Natalia B. Bidart.
| * | | Fix #11491. When dbm.open was called with a file which already exists andbriancurtin2011-03-142-3/+11
| |\ \ \ | | |/ / | | | | | | | | | | | | | | | | the "flag" argument is "n", dbm.error was being raised. As documented, dbm.open(...,flag='n') will now "Always create a new, empty database, open for reading and writing", regardless of a previous file existing.
| | * | Fix #11491. When dbm.open was called with a file which already exists andbriancurtin2011-03-142-3/+11
| | | | | | | | | | | | | | | | | | | | | | | | the "flag" argument is "n", dbm.error was being raised. As documented, dbm.open(...,flag='n') will now "Always create a new, empty database, open for reading and writing", regardless of a previous file existing.
| | * | Skip test that requires zlib when zlib is not available.Ezio Melotti2011-03-141-0/+1
| | | |
| * | | whitespace fixGregory P. Smith2011-03-141-1/+1
| | | |
| * | | merge defaultGregory P. Smith2011-03-141-1/+1
| |\ \ \
| * | | | Add a SubprocessError base class for exceptions in the subprocess module.Gregory P. Smith2011-03-141-4/+9
| | | | |
* | | | | Tweak subprocess test timeouts to satisfy the buildbot.Reid Kleckner2011-03-141-2/+2
| |/ / / |/| | |
* | | | Attempt a larger timeout value to satisfy the buildbots.Reid Kleckner2011-03-141-1/+1
|/ / /
* | | Merge with default.Reid Kleckner2011-03-142-1/+2
|\ \ \
| * | | Skip test if zlib not present. Closes #11498. Patch by Natalia B. Bidart.Eric V. Smith2011-03-142-1/+2
| | | |
* | | | Add a 'timeout' argument to subprocess.Popen.Reid Kleckner2011-03-142-87/+302
|/ / / | | | | | | | | | | | | | | | | | | If the timeout expires before the subprocess exits, the wait method and the communicate method will raise a subprocess.TimeoutExpired exception. When used with communicate, it is possible to catch the exception, kill the process, and retry the communicate and receive any output written to stdout or stderr.
* | | Typos.Eric V. Smith2011-03-141-2/+2
| | |
* | | Merge #11488 patch from 3.2.R David Murray2011-03-141-0/+17
|\ \ \ | |/ /
| * | Merge #11488 patch from 3.1.R David Murray2011-03-141-0/+17
| |\ \ | | |/
| | * #11488: Add tests for writelines method of SpooledTemporaryFile.R David Murray2011-03-141-0/+17
| | | | | | | | | | | | Patch by Evan Dandrea.
* | | Merge whitespace fix from 3.2.R David Murray2011-03-141-1/+1
|\ \ \ | |/ /
| * | Fix whitespaceR David Murray2011-03-141-1/+1
| | |
* | | Merge fix for #11490 from 3.2.R David Murray2011-03-141-1/+2
|\ \ \ | |/ /
| * | Merge fix for #11490 from 3.1.R David Murray2011-03-141-1/+2
| |\ \ | | |/
| | * #11490: EACCES can also mean command not foundR David Murray2011-03-141-1/+2
| | |
* | | #1162477: accept '.' in addition to ':' when parsing time in date header.R David Murray2011-03-142-0/+15
| | | | | | | | | | | | | | | Some non-compliant MUAs use '.'s, so by the Postel Principle we should accept them. Patch by Thomas Herve.
* | | Merge commit for #11233Antoine Pitrou2011-03-131-2/+17
|\ \ \ | |/ /
| * | Issue #11223: Fix test_threadsignals to fail, not hang, when theAntoine Pitrou2011-03-131-2/+17
| | | | | | | | | | | | non-semaphore implementation of locks is used under POSIX.
* | | Issue 9856: Change object.__format__ with a non-empty format string from a ↵Eric V. Smith2011-03-122-4/+4
| | | | | | | | | | | | PendingDeprecationWarning to a DeprecationWarning.
* | | Merge #11131Mark Dickinson2011-03-122-8/+81
|\ \ \ | |/ /
| * | Merge #11131Mark Dickinson2011-03-122-8/+81
| |\ \ | | |/
| | * Issue 11131: Fix sign of zero result on decimal.Decimal plus and minus ↵Mark Dickinson2011-03-122-8/+81
| | | | | | | | | | | | operations in ROUND_FLOOR rounding mode.