summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
...
* | Issue #23477: Improve test coverage of wsgiref.simple_server.Berker Peksag2015-03-021-0/+25
|\ \ | |/ | | | | | | | | | | The test checks that the environ argument contains correct headers, querystring and path information. Patch by Alex Shkop.
| * Issue #23477: Improve test coverage of wsgiref.simple_server.Berker Peksag2015-03-021-0/+25
| | | | | | | | | | | | | | The test checks that the environ argument contains correct headers, querystring and path information. Patch by Alex Shkop.
* | Issue #23387: Skip test_issue16464 if it raises an 5xx error.Berker Peksag2015-03-022-21/+13
|\ \ | |/ | | | | | | Also, remove support.run_doctest() since there is no doctests in test_urllib2 and urllib.request.
| * Issue #23387: Skip test_issue16464 if it raises an 5xx error.Berker Peksag2015-03-022-21/+13
| | | | | | | | | | Also, remove support.run_doctest() since there is no doctests in test_urllib2 and urllib.request.
* | Issue #7830: Flatten nested functools.partial.Alexander Belopolsky2015-03-012-0/+18
| |
* | Closes issue #22791: Improved datetime from timestamp methods documentation.Alexander Belopolsky2015-03-011-1/+1
| | | | | | | | Original patch by Akira Li.
* | Fixed pydoc tests when run with -OO.Serhiy Storchaka2015-03-011-0/+4
|\ \ | |/
| * Fixed pydoc tests when run with -OO.Serhiy Storchaka2015-03-011-0/+4
| |
* | Issue #19980: Improved help() for non-recognized strings. help('') nowSerhiy Storchaka2015-02-282-5/+14
| | | | | | | | | | shows the help on str. help('help') now shows the help on help(). Original patch by Mark Lawrence.
* | Fixes #23521: Corrected pure python implementation of timedelta division.Alexander Belopolsky2015-02-282-3/+57
|\ \ | |/ | | | | | | * Eliminated OverflowError from timedelta * float for some floats; * Corrected rounding in timedlta true division.
| * Fixes #23521: Corrected pure python implementation of timedelta division.Alexander Belopolsky2015-02-282-3/+57
| | | | | | | | | | * Eliminated OverflowError from timedelta * float for some floats; * Corrected rounding in timedlta true division.
* | Fixed a test for issue #21619 on Windows.Serhiy Storchaka2015-02-281-1/+1
|\ \ | |/ | | | | On Windows an OSError with errno=EINVAL is raised.
| * Fixed a test for issue #21619 on Windows.Serhiy Storchaka2015-02-281-1/+1
| | | | | | | | On Windows an OSError with errno=EINVAL is raised.
* | Issue #21619: Popen objects no longer leave a zombie after exit in the withSerhiy Storchaka2015-02-282-4/+21
|\ \ | |/ | | | | statement if the pipe was broken. Patch by Martin Panter.
| * Issue #21619: Popen objects no longer leave a zombie after exit in the withSerhiy Storchaka2015-02-282-4/+21
| | | | | | | | statement if the pipe was broken. Patch by Martin Panter.
* | Issue #22834: Drop a redundant comment and use errno instead of anBrett Cannon2015-02-271-2/+2
| | | | | | | | | | | | integer. Thanks to Serhiy Storchaka and Martin Panter for the suggestions.
* | Merge 3.4 (asyncio)Victor Stinner2015-02-271-6/+0
|\ \ | |/
| * Issue #23537: Remove 2 unused private methods of asyncio.BaseSubprocessTransportVictor Stinner2015-02-271-6/+0
| | | | | | | | Methods only raise NotImplementedError and are never used.
* | Merge 3.4 (httplib)Victor Stinner2015-02-271-0/+3
|\ \ | |/
| * Issue #23526: Fix ResourceWarning in test_httplib. Patch written by Alex Shkop.Victor Stinner2015-02-271-0/+3
| |
| * Merge 3.4.3 release engineering changes back into 3.4.Larry Hastings2015-02-2635-437/+792
| |\
| * | Release bump for 3.4.3 final.Larry Hastings2015-02-232-2/+2
| | |
| * | Doc updates for 3.4.3 final.Larry Hastings2015-02-231-1/+1
| | |
* | | Bump the blocksize up from 62 to 64 to speed up the modulo calculation.Raymond Hettinger2015-02-271-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | Remove the old comment suggesting that it was desireable to have blocksize+2 as a multiple of the cache line length. That would have made sense only if the block structure start point was always aligned to a cache line boundary. However, the memory allocations are 16 byte aligned, so we don't really have control over whether the struct spills across cache line boundaries.
* | | Issue #15955: Add an option to limit the output size in bz2.decompress().Antoine Pitrou2015-02-261-0/+103
| | | | | | | | | | | | Patch by Nikolaus Rath.
* | | merge 3.4Benjamin Peterson2015-02-251-1/+0
|\ \ \ | | |/ | |/|
| * | remove unused importBenjamin Peterson2015-02-251-1/+0
| | |
* | | Issue 23314: SuppressCrashReports now disables CRT assertionsSteve Dower2015-02-232-15/+44
| | | | | | | | | | | | SuppressCrashReports should be used in test subprocesses that test invalid conditions.
* | | Broke reference loops in tests added in issue #5700.Serhiy Storchaka2015-02-221-0/+3
|\ \ \ | |/ /
| * | Broke reference loops in tests added in issue #5700.Serhiy Storchaka2015-02-221-0/+3
| | |
* | | Issue #6639: Module-level turtle functions no longer raise TclError afterSerhiy Storchaka2015-02-222-34/+37
|\ \ \ | |/ / | | | | | | closing the window.
| * | Issue #6639: Module-level turtle functions no longer raise TclError afterSerhiy Storchaka2015-02-222-34/+37
| | | | | | | | | | | | closing the window.
| * | Issues #814253, #9179: Warnings now are raised when group references andSerhiy Storchaka2015-02-212-1/+52
| | | | | | | | | | | | | | | conditional group references are used in lookbehind assertions in regular expressions.
* | | Issues #814253, #9179: Group references and conditional group references nowSerhiy Storchaka2015-02-213-12/+86
| | | | | | | | | | | | work in lookbehind assertions in regular expressions.
* | | Issue #23215: Multibyte codecs with custom error handlers that ignores errorsSerhiy Storchaka2015-02-201-0/+7
|\ \ \ | |/ / | | | | | | | | | consumed too much memory and raised SystemError or MemoryError. Original patch by Aleksi Torhamo.
| * | Issue #23215: Multibyte codecs with custom error handlers that ignores errorsSerhiy Storchaka2015-02-201-0/+7
| | | | | | | | | | | | | | | consumed too much memory and raised SystemError or MemoryError. Original patch by Aleksi Torhamo.
* | | Issue #5700: io.FileIO() called flush() after closing the file.Serhiy Storchaka2015-02-201-2/+48
|\ \ \ | |/ / | | | | | | flush() was not called in close() if closefd=False.
| * | Issue #5700: io.FileIO() called flush() after closing the file.Serhiy Storchaka2015-02-201-2/+48
| | | | | | | | | | | | flush() was not called in close() if closefd=False.
* | | Issue #23374: Fixed pydoc failure with non-ASCII files when stdout encodingSerhiy Storchaka2015-02-202-9/+22
|\ \ \ | |/ / | | | | | | differs from file system encoding (e.g. on Mac OS).
| * | Issue #23374: Fixed pydoc failure with non-ASCII files when stdout encodingSerhiy Storchaka2015-02-202-9/+22
| | | | | | | | | | | | differs from file system encoding (e.g. on Mac OS).
* | | Issue #22834: Fix a failing test under Solaris due to the platform notBrett Cannon2015-02-201-2/+8
| | | | | | | | | | | | | | | | | | allowing the deletion of the cwd. Thanks to Martin Panter for the initial fix.
* | | Issue #23442: Rename two member names to stay backward compatibleBerker Peksag2015-02-202-4/+65
| | | | | | | | | | | | | | | | | | with the constants in http.client. Initial patch by Demian Brecht.
* | | Issue #23439: Add missing entries to http.client.__all__.Berker Peksag2015-02-202-1/+18
|\ \ \ | |/ / | | | | | | | | | | | | | | | Also, document the LineTooLong exception since it can be raised by the members of public API (e.g. http.client.HTTPResponse). Patch by Martin Panter.
| * | Issue #23439: Add missing entries to http.client.__all__.Berker Peksag2015-02-202-1/+18
| | | | | | | | | | | | | | | | | | | | | Also, document the LineTooLong exception since it can be raised by the members of public API (e.g. http.client.HTTPResponse). Patch by Martin Panter.
* | | merge 3.4 (#23481)Benjamin Peterson2015-02-191-4/+2
|\ \ \ | |/ /
| * | remove rc4 from the default client ciphers (closes #23481)Benjamin Peterson2015-02-191-4/+2
| | |
* | | Issue #23474: Enhanced locale testing.Serhiy Storchaka2015-02-182-40/+61
|\ \ \ | |/ /
| * | Issue #23474: Enhanced locale testing.Serhiy Storchaka2015-02-182-40/+61
| | |
* | | merge 3.4 (#23410)Benjamin Peterson2015-02-182-10/+49
|\ \ \ | |/ /
| * | document the requestline and close_connection attributes, use real booleans, ↵Benjamin Peterson2015-02-182-10/+49
| | | | | | | | | | | | | | | | | | and add tests (closes #23410) Patch by Martin Panter.