Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | Issue #7830: Flatten nested functools.partial. | Alexander Belopolsky | 2015-03-01 | 1 | -0/+10 | |
| | | ||||||
* | | Fixed pydoc tests when run with -OO. | Serhiy Storchaka | 2015-03-01 | 1 | -0/+4 | |
|\ \ | |/ | ||||||
| * | Fixed pydoc tests when run with -OO. | Serhiy Storchaka | 2015-03-01 | 1 | -0/+4 | |
| | | ||||||
* | | Issue #19980: Improved help() for non-recognized strings. help('') now | Serhiy Storchaka | 2015-02-28 | 1 | -1/+4 | |
| | | | | | | | | | | 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 Belopolsky | 2015-02-28 | 1 | -0/+34 | |
|\ \ | |/ | | | | | | | * Eliminated OverflowError from timedelta * float for some floats; * Corrected rounding in timedlta true division. | |||||
| * | Fixes #23521: Corrected pure python implementation of timedelta division. | Alexander Belopolsky | 2015-02-28 | 1 | -0/+34 | |
| | | | | | | | | | | * Eliminated OverflowError from timedelta * float for some floats; * Corrected rounding in timedlta true division. | |||||
* | | Fixed a test for issue #21619 on Windows. | Serhiy Storchaka | 2015-02-28 | 1 | -1/+1 | |
|\ \ | |/ | | | | | On Windows an OSError with errno=EINVAL is raised. | |||||
| * | Fixed a test for issue #21619 on Windows. | Serhiy Storchaka | 2015-02-28 | 1 | -1/+1 | |
| | | | | | | | | On Windows an OSError with errno=EINVAL is raised. | |||||
* | | Issue #21619: Popen objects no longer leave a zombie after exit in the with | Serhiy Storchaka | 2015-02-28 | 1 | -0/+15 | |
|\ \ | |/ | | | | | statement if the pipe was broken. Patch by Martin Panter. | |||||
| * | Issue #21619: Popen objects no longer leave a zombie after exit in the with | Serhiy Storchaka | 2015-02-28 | 1 | -0/+15 | |
| | | | | | | | | statement if the pipe was broken. Patch by Martin Panter. | |||||
* | | Issue #22834: Drop a redundant comment and use errno instead of an | Brett Cannon | 2015-02-27 | 1 | -2/+2 | |
| | | | | | | | | | | | | integer. Thanks to Serhiy Storchaka and Martin Panter for the suggestions. | |||||
* | | Merge 3.4 (httplib) | Victor Stinner | 2015-02-27 | 1 | -0/+3 | |
|\ \ | |/ | ||||||
| * | Issue #23526: Fix ResourceWarning in test_httplib. Patch written by Alex Shkop. | Victor Stinner | 2015-02-27 | 1 | -0/+3 | |
| | | ||||||
* | | Bump the blocksize up from 62 to 64 to speed up the modulo calculation. | Raymond Hettinger | 2015-02-27 | 1 | -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 Pitrou | 2015-02-26 | 1 | -0/+103 | |
| | | | | | | | | Patch by Nikolaus Rath. | |||||
* | | merge 3.4 | Benjamin Peterson | 2015-02-25 | 1 | -1/+0 | |
|\ \ | |/ | ||||||
| * | remove unused import | Benjamin Peterson | 2015-02-25 | 1 | -1/+0 | |
| | | ||||||
* | | Issue 23314: SuppressCrashReports now disables CRT assertions | Steve Dower | 2015-02-23 | 2 | -15/+44 | |
| | | | | | | | | SuppressCrashReports should be used in test subprocesses that test invalid conditions. | |||||
* | | Broke reference loops in tests added in issue #5700. | Serhiy Storchaka | 2015-02-22 | 1 | -0/+3 | |
|\ \ | |/ | ||||||
| * | Broke reference loops in tests added in issue #5700. | Serhiy Storchaka | 2015-02-22 | 1 | -0/+3 | |
| | | ||||||
| * | Issues #814253, #9179: Warnings now are raised when group references and | Serhiy Storchaka | 2015-02-21 | 1 | -1/+32 | |
| | | | | | | | | | | conditional group references are used in lookbehind assertions in regular expressions. | |||||
* | | Issues #814253, #9179: Group references and conditional group references now | Serhiy Storchaka | 2015-02-21 | 1 | -1/+41 | |
| | | | | | | | | work in lookbehind assertions in regular expressions. | |||||
* | | Issue #23215: Multibyte codecs with custom error handlers that ignores errors | Serhiy Storchaka | 2015-02-20 | 1 | -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 errors | Serhiy Storchaka | 2015-02-20 | 1 | -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 Storchaka | 2015-02-20 | 1 | -2/+48 | |
|\ \ | |/ | | | | | flush() was not called in close() if closefd=False. | |||||
| * | Issue #5700: io.FileIO() called flush() after closing the file. | Serhiy Storchaka | 2015-02-20 | 1 | -2/+48 | |
| | | | | | | | | flush() was not called in close() if closefd=False. | |||||
* | | Issue #23374: Fixed pydoc failure with non-ASCII files when stdout encoding | Serhiy Storchaka | 2015-02-20 | 1 | -0/+9 | |
|\ \ | |/ | | | | | differs from file system encoding (e.g. on Mac OS). | |||||
| * | Issue #23374: Fixed pydoc failure with non-ASCII files when stdout encoding | Serhiy Storchaka | 2015-02-20 | 1 | -0/+9 | |
| | | | | | | | | differs from file system encoding (e.g. on Mac OS). | |||||
* | | Issue #22834: Fix a failing test under Solaris due to the platform not | Brett Cannon | 2015-02-20 | 1 | -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 compatible | Berker Peksag | 2015-02-20 | 1 | -0/+61 | |
| | | | | | | | | | | | | with the constants in http.client. Initial patch by Demian Brecht. | |||||
* | | Issue #23439: Add missing entries to http.client.__all__. | Berker Peksag | 2015-02-20 | 1 | -0/+15 | |
|\ \ | |/ | | | | | | | | | | | 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 Peksag | 2015-02-20 | 1 | -0/+15 | |
| | | | | | | | | | | | | | | 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 #23474: Enhanced locale testing. | Serhiy Storchaka | 2015-02-18 | 2 | -40/+61 | |
|\ \ | |/ | ||||||
| * | Issue #23474: Enhanced locale testing. | Serhiy Storchaka | 2015-02-18 | 2 | -40/+61 | |
| | | ||||||
* | | merge 3.4 (#23410) | Benjamin Peterson | 2015-02-18 | 1 | -0/+39 | |
|\ \ | |/ | ||||||
| * | document the requestline and close_connection attributes, use real booleans, ↵ | Benjamin Peterson | 2015-02-18 | 1 | -0/+39 | |
| | | | | | | | | | | | | and add tests (closes #23410) Patch by Martin Panter. | |||||
* | | Merge 3.4 (asyncio) | Victor Stinner | 2015-02-17 | 1 | -0/+1 | |
|\ \ | |/ | ||||||
| * | asyncio: Fix warning in test_close_kill_running() | Victor Stinner | 2015-02-17 | 1 | -0/+1 | |
| | | | | | | | | | | Read process exit status to avoid the "Caught subprocess termination from unknown pid" message. | |||||
* | | Merge 3.4 (asyncio) | Victor Stinner | 2015-02-17 | 2 | -7/+15 | |
|\ \ | |/ | ||||||
| * | Issue #23475, asyncio: Fix test_close_kill_running() | Victor Stinner | 2015-02-17 | 1 | -2/+10 | |
| | | | | | | | | | | | | Really kill the child process, don't mock completly the Popen.kill() method. This change fix memory leaks and reference leaks. | |||||
| * | asyncio, Tulip issue 220: Merge JoinableQueue with Queue. | Victor Stinner | 2015-02-17 | 1 | -5/+5 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Merge JoinableQueue with Queue. To more closely match the standard Queue, asyncio.Queue has "join" and "task_done". JoinableQueue is deleted. Docstring for Queue.join shouldn't mention threads. Restore JoinableQueue as a deprecated alias for Queue. To more closely match the standard Queue, asyncio.Queue has "join" and "task_done". JoinableQueue remains as a deprecated alias for Queue to avoid needlessly breaking too much code that depended on it. Patch written by A. Jesse Jiryu Davis <jesse@mongodb.com>. | |||||
* | | Issue #22883: Got rid of outdated references to PyInt and PyString in comments. | Serhiy Storchaka | 2015-02-17 | 1 | -2/+2 | |
| | | ||||||
* | | merge 3.4 (#21548) | Benjamin Peterson | 2015-02-17 | 1 | -0/+32 | |
|\ \ | |/ | ||||||
| * | fix pydoc.apropos and pydoc.synopsis on modules with empty docstrings (#21548) | Benjamin Peterson | 2015-02-17 | 1 | -0/+32 | |
| | | | | | | | | Patch by Yuyang Guo and Berker Peksag. | |||||
* | | Fixed sizeof tests for ElementTree (issue #23450). | Serhiy Storchaka | 2015-02-16 | 1 | -1/+1 | |
| | | ||||||
* | | Issue #20069: Fixed test_os on Solaris: error message is platform depended. | Serhiy Storchaka | 2015-02-16 | 1 | -1/+1 | |
| | | ||||||
* | | Issue #17753: effective_ids unavailable on Windows. | Berker Peksag | 2015-02-16 | 1 | -1/+3 | |
|\ \ | |/ | ||||||
| * | Issue #17753: effective_ids unavailable on Windows. | Berker Peksag | 2015-02-16 | 1 | -1/+3 | |
| | | ||||||
* | | Issue #22885: Fixed arbitrary code execution vulnerability in the dbm.dumb | Serhiy Storchaka | 2015-02-15 | 1 | -0/+9 | |
|\ \ | |/ | | | | | module. Original patch by Claudiu Popa. | |||||
| * | Issue #22885: Fixed arbitrary code execution vulnerability in the dbm.dumb | Serhiy Storchaka | 2015-02-15 | 1 | -0/+9 | |
| | | | | | | | | module. Original patch by Claudiu Popa. |