Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #14099: Restored support of writing ZIP files to tellable but | Serhiy Storchaka | 2015-01-26 | 3 | -3/+44 |
| | | | | non-seekable streams. | ||||
* | Issue #14099: Writing to ZipFile and reading multiple ZipExtFiles is | Serhiy Storchaka | 2015-01-26 | 2 | -198/+212 |
| | | | | threadsafe now. | ||||
* | Null merge | Serhiy Storchaka | 2015-01-26 | 0 | -0/+0 |
|\ | |||||
| * | Issue #14099: Backout changeset e5bb3044402b (except adapted tests). | Serhiy Storchaka | 2015-01-26 | 4 | -132/+102 |
| | | |||||
* | | Issue #19361: JSON decoder now raises JSONDecodeError instead of ValueError. | Serhiy Storchaka | 2015-01-26 | 10 | -85/+146 |
| | | |||||
* | | Null merge | Serhiy Storchaka | 2015-01-26 | 0 | -0/+0 |
|\ \ | |/ | |||||
| * | Merge heads | Serhiy Storchaka | 2015-01-26 | 2 | -15/+41 |
| |\ | |||||
* | \ | Merge heads | Serhiy Storchaka | 2015-01-26 | 2 | -15/+41 |
|\ \ \ | |||||
| * \ \ | Merge 3.4 (asyncio) | Victor Stinner | 2015-01-26 | 2 | -15/+41 |
| |\ \ \ | | | |/ | | |/| | |||||
| | * | | Issue #23208, asyncio: Add BaseEventLoop._current_handle | Victor Stinner | 2015-01-26 | 1 | -6/+19 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In debug mode, BaseEventLoop._run_once() now sets the BaseEventLoop._current_handle attribute to the handle currently executed. In release mode or when no handle is executed, the attribute is None. BaseEventLoop.default_exception_handler() displays the traceback of the current handle if available. | ||||
| | * | | Issue #23293, asyncio: Cleanup IocpProactor.close() | Victor Stinner | 2015-01-26 | 1 | -6/+1 |
| | | | | | | | | | | | | | | | | | | | | The special case for connect_pipe() is not more needed. connect_pipe() doesn't use overlapped operations anymore. | ||||
| | * | | asyncio: Close transports on error | Victor Stinner | 2015-01-26 | 1 | -3/+21 |
| | | | | | | | | | | | | | | | | | | | | Fix create_datagram_endpoint(), connect_read_pipe() and connect_write_pipe(): close the transport if the task is cancelled or on error. | ||||
* | | | | Issue #18518: timeit now rejects statements which can't be compiled outside | Serhiy Storchaka | 2015-01-26 | 4 | -6/+21 |
|\ \ \ \ | |/ / / |/| | / | | |/ | |/| | a function or a loop (e.g. "return" or "break"). | ||||
| * | | Issue #18518: timeit now rejects statements which can't be compiled outside | Serhiy Storchaka | 2015-01-26 | 4 | -6/+21 |
| |/ | | | | | | | a function or a loop (e.g. "return" or "break"). | ||||
* | | Issue #23094: Fixed readline with frames in Python implementation of pickle. | Serhiy Storchaka | 2015-01-26 | 3 | -1/+11 |
|\ \ | |/ | |||||
| * | Issue #23094: Fixed readline with frames in Python implementation of pickle. | Serhiy Storchaka | 2015-01-26 | 3 | -1/+11 |
| | | |||||
* | | Issue #7665: Fixed tests test_ntpath and test_urllib2 when ran in the | Serhiy Storchaka | 2015-01-26 | 2 | -4/+5 |
|\ \ | |/ | | | | | directory containing a backslash. | ||||
| * | Issue #7665: Fixed tests test_ntpath and test_urllib2 when ran in the | Serhiy Storchaka | 2015-01-26 | 2 | -4/+5 |
| | | | | | | | | directory containing a backslash. | ||||
* | | Add credits for Martin Panter. | Serhiy Storchaka | 2015-01-26 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Add credits for Martin Panter. | Serhiy Storchaka | 2015-01-26 | 1 | -1/+1 |
| | | |||||
* | | Issue #23268: Fixed bugs in the comparison of ipaddress classes. | Serhiy Storchaka | 2015-01-26 | 3 | -45/+51 |
|\ \ | |/ | |||||
| * | Issue #23268: Fixed bugs in the comparison of ipaddress classes. | Serhiy Storchaka | 2015-01-26 | 3 | -45/+51 |
| | | |||||
* | | Issue #21408: The default __ne__() now returns NotImplemented if __eq__() | Serhiy Storchaka | 2015-01-26 | 11 | -47/+77 |
|\ \ | |/ | | | | | returned NotImplemented. Removed incorrect implementations of __ne__(). | ||||
| * | Issue #21408: The default __ne__() now returns NotImplemented if __eq__() | Serhiy Storchaka | 2015-01-26 | 11 | -47/+77 |
| | | | | | | | | returned NotImplemented. Removed incorrect implementations of __ne__(). | ||||
* | | Don't use deprecated assertEquals. | Serhiy Storchaka | 2015-01-26 | 1 | -4/+4 |
| | | |||||
* | | merge 3.4 (#19996) | Benjamin Peterson | 2015-01-25 | 4 | -1/+29 |
|\ \ | |/ | |||||
| * | handle headers with no key (closes #19996) | Benjamin Peterson | 2015-01-25 | 4 | -1/+29 |
| | | | | | | | | Patch by Cory Benfield. | ||||
* | | Set the hash values of dummy entries to -1. Improves quality of entry->hash ↵ | Raymond Hettinger | 2015-01-25 | 1 | -0/+2 |
| | | | | | | | | == hash tests. | ||||
* | | Update out-of-date comments. | Raymond Hettinger | 2015-01-25 | 1 | -5/+3 |
| | | |||||
* | | Issue #23119: Simplify setobject by inlining the special case for unicode ↵ | Raymond Hettinger | 2015-01-25 | 3 | -73/+13 |
| | | | | | | | | equality testing. | ||||
* | | Issue #23321: Fixed a crash in str.decode() when error handler returned | Serhiy Storchaka | 2015-01-26 | 2 | -2/+9 |
|\ \ | |/ | | | | | replacment string longer than mailformed input data. | ||||
| * | Issue #23321: Fixed a crash in str.decode() when error handler returned | Serhiy Storchaka | 2015-01-26 | 2 | -2/+9 |
| | | | | | | | | replacment string longer than mailformed input data. | ||||
* | | Issue #22286: The "backslashreplace" error handlers now works with | Serhiy Storchaka | 2015-01-25 | 10 | -83/+196 |
| | | | | | | | | decoding and translating. | ||||
* | | Merge: #23215: note that time.sleep affects the current thread only. | R David Murray | 2015-01-25 | 1 | -6/+7 |
|\ \ | |/ | |||||
| * | #23215: reflow paragraph. | R David Murray | 2015-01-25 | 1 | -6/+6 |
| | | |||||
| * | #23251: Note that time.sleep affects the calling thread only. | R David Murray | 2015-01-25 | 1 | -1/+2 |
| | | | | | | | | This change parallels the language used in the unix man page. | ||||
* | | merge from 3.4 | Senthil Kumaran | 2015-01-24 | 1 | -25/+42 |
|\ \ | |/ | | | | | | | | | | | Increase http.client.HTTPConnection test coverage. Added a new tunnel test to verify setting of _tunnel_host, _tunnel_port, _tunnel_headers attributes on HTTPConnection object. | ||||
| * | Increase http.client.HTTPConnection test coverage. | Senthil Kumaran | 2015-01-24 | 1 | -25/+42 |
| | | | | | | | | | | Added a new tunnel test to verify setting of _tunnel_host, _tunnel_port, _tunnel_headers attributes on HTTPConnection object. | ||||
* | | Closes #23253: Delay-load ShellExecute | Steve Dower | 2015-01-24 | 3 | -4/+50 |
| | | |||||
* | | Issue20284: Implement PEP461 | Ethan Furman | 2015-01-23 | 10 | -158/+1185 |
| | | |||||
* | | prefer server alpn ordering over the client's | Benjamin Peterson | 2015-01-23 | 3 | -16/+24 |
| | | |||||
* | | add support for ALPN (closes #20188) | Benjamin Peterson | 2015-01-23 | 5 | -29/+231 |
| | | |||||
* | | Closes #23305: Merged documentation fix from 3.4. | Vinay Sajip | 2015-01-23 | 1 | -9/+10 |
|\ \ | |/ | |||||
| * | Issue #23305: clarified RotatingFileHandler documentation. | Vinay Sajip | 2015-01-23 | 1 | -9/+10 |
| | | |||||
* | | Closes #23207: logging.basicConfig() now does additional validation of its ↵ | Vinay Sajip | 2015-01-23 | 1 | -8/+11 |
|\ \ | |/ | | | | | arguments. | ||||
| * | Issue #23207: logging.basicConfig() now does additional validation of its ↵ | Vinay Sajip | 2015-01-23 | 1 | -8/+11 |
| | | | | | | | | arguments. | ||||
* | | Closes #23202: pyvenv documentation updated to match its behavior. | Vinay Sajip | 2015-01-23 | 1 | -2/+5 |
|\ \ | |/ | |||||
| * | Updated pyvenv documentation to match its current behaviour. | Vinay Sajip | 2015-01-23 | 1 | -2/+5 |
| | | |||||
* | | http.client: disable Nagle's algorithm (closes #23302) | Benjamin Peterson | 2015-01-23 | 3 | -43/+11 |
| | | | | | | | | Patch by Demian Brecht. | ||||
* | | revert 7b833bd1f509. I misread the side effect that the code was triggering. | Gregory P. Smith | 2015-01-22 | 1 | -2/+4 |
|\ \ | |/ | | | | | | | *any* kwarg supplied to _assert_python causes it to not append -E to the command line flags so without='-E' does effectively work. |