Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | | Issue #25895: Enable WebSocket URL schemes in urllib.parse.urljoin | Berker Peksag | 2016-09-16 | 2 | -2/+5 | |
| | | | | | | | | | | | | Patch by Gergely Imreh and Markus Holtermann. | |||||
* | | | Issue #28145: Spelling fixes | Martin Panter | 2016-09-16 | 1 | -1/+1 | |
| | | | ||||||
* | | | Issue #27759: Fix selectors incorrectly retain invalid file descriptors. | Yury Selivanov | 2016-09-15 | 2 | -9/+40 | |
| | | | | | | | | | | | | Patch by Mark Williams. | |||||
* | | | Issue #28176: Fix callbacks race in asyncio.SelectorLoop.sock_connect. | Yury Selivanov | 2016-09-15 | 2 | -40/+111 | |
| | | | ||||||
* | | | Issue #26909: Fix slow pipes IO in asyncio. | Yury Selivanov | 2016-09-15 | 2 | -42/+34 | |
| | | | | | | | | | | | | Patch by INADA Naoki. | |||||
* | | | Issue #26654: Inspect functools.partial in asyncio.Handle.__repr__. | Yury Selivanov | 2016-09-15 | 3 | -15/+23 | |
| | | | | | | | | | | | | Patch by iceboy. | |||||
* | | | Issue #28174: Handle when SO_REUSEPORT isn't properly supported (asyncio) | Yury Selivanov | 2016-09-15 | 2 | -12/+24 | |
| | | | | | | | | | | | | Patch by Seth Michael Larson. | |||||
* | | | Issue #27906: Fix socket accept exhaustion during high TCP traffic. | Yury Selivanov | 2016-09-15 | 5 | -36/+57 | |
| | | | | | | | | | | | | Patch by Kevin Conway. | |||||
* | | | Another asyncio sync. | Yury Selivanov | 2016-09-15 | 2 | -5/+11 | |
| | | | ||||||
* | | | asyncio: Sync with the upstream | Yury Selivanov | 2016-09-15 | 2 | -0/+64 | |
| | | | ||||||
* | | | Issue #27599: Fixed buffer overrun in binascii.b2a_qp() and binascii.a2b_qp(). | Serhiy Storchaka | 2016-09-14 | 1 | -23/+92 | |
| | | | ||||||
* | | | Issue #28131: Fix a regression in zipimport's compile_source() | Berker Peksag | 2016-09-14 | 1 | -0/+13 | |
| | | | | | | | | | | | | zipimport should use the same optimization level as the interpreter. | |||||
* | | | Issue #27952: Capture stderr in run_script() | Berker Peksag | 2016-09-13 | 1 | -1/+2 | |
| | | | ||||||
* | | | Issue #17582: xml.etree.ElementTree nows preserves whitespaces in attributes | Raymond Hettinger | 2016-09-12 | 2 | -0/+19 | |
| | | | | | | | | | | | | (Patch by Duane Griffin. Reviewed and approved by Stefan Behnel.) | |||||
* | | | Issue #15308: Add 'interrupt execution' (^C) to Shell menu. | Terry Jan Reedy | 2016-09-12 | 3 | -26/+49 | |
| | | | | | | | | | | | | Patch by Roger Serwy, updated by Bayard Randel. | |||||
* | | | Issue #27456: asyncio: Set TCP_NODELAY by default. | Yury Selivanov | 2016-09-12 | 1 | -0/+16 | |
| | | | ||||||
* | | | asyncio: Add set_protocol / get_protocol methods to Transports | Yury Selivanov | 2016-09-12 | 7 | -0/+45 | |
| | | | ||||||
* | | | Issue #28079: Update typing and test typing from python/typing repo. | Guido van Rossum | 2016-09-11 | 2 | -63/+407 | |
| | | | | | | | | | | | | Ivan Levkivskyi (3.5 version) | |||||
* | | | #19003: Only replace \r and/or \n line endings in email.generator. | R David Murray | 2016-09-11 | 2 | -6/+22 | |
| | | | | | | | | | | | | | | | This is a further restoration of backward compatibility, as well as being correct per the RFCs. | |||||
* | | | Fixes #25671: Updated prompt handling in activate.fish. | Vinay Sajip | 2016-09-11 | 1 | -19/+20 | |
| | | | ||||||
* | | | Issue #27952: Get fixcid.py working with the re module | Martin Panter | 2016-09-11 | 1 | -0/+91 | |
| | | | ||||||
* | | | Remove the debug print that i accidentally left in. | Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) | 2016-09-11 | 1 | -1/+0 | |
| | | | ||||||
* | | | Backported tests for issue #28070. | Serhiy Storchaka | 2016-09-10 | 1 | -0/+3 | |
| | | | ||||||
* | | | IDLE newx items. | Terry Jan Reedy | 2016-09-10 | 1 | -0/+7 | |
| | | | ||||||
* | | | Closes #28059: Fixes test_platform to set PYTHONPATH for .pyd files | Steve Dower | 2016-09-10 | 1 | -2/+9 | |
| | | | ||||||
* | | | Issue #27932: Backs out change | Steve Dower | 2016-09-10 | 1 | -33/+29 | |
| | | | ||||||
* | | | Correct spelling in documentation and code comment | Martin Panter | 2016-09-10 | 2 | -2/+2 | |
| | | | ||||||
* | | | regrtest: accept options after test names | Victor Stinner | 2016-09-10 | 1 | -1/+1 | |
| | | | ||||||
* | | | Issue #28019: itertools.count() no longer rounds non-integer step in range | Serhiy Storchaka | 2016-09-10 | 1 | -5/+23 | |
| | | | | | | | | | | | | between 1.0 and 2.0 to 1. | |||||
* | | | Use raw string for regexp | Guido van Rossum | 2016-09-10 | 1 | -1/+1 | |
| | | | ||||||
* | | | Issue #25969: Update the lib2to3 grammar to handle the unpacking | Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) | 2016-09-10 | 6 | -6/+88 | |
| | | | | | | | | | | | | generalizations added in 3.5. | |||||
* | | | remove fix_callable - callable() was readded many releases ago. | Gregory P. Smith | 2016-09-10 | 2 | -129/+0 | |
| | | | ||||||
* | | | Issue #27932: Fixes memory leak in platform.win32_ver() | Steve Dower | 2016-09-10 | 1 | -29/+33 | |
| | | | ||||||
* | | | Issue #25758: Prevents zipimport from unnecessarily encoding a filename ↵ | Steve Dower | 2016-09-10 | 1 | -1/+1 | |
| | | | | | | | | | | | | (patch by Eryk Sun) | |||||
* | | | #14977: Make mailcap respect the order of the lines in the mailcap file. | R David Murray | 2016-09-10 | 3 | -27/+72 | |
| | | | | | | | | | | | | | | | This is required by RFC 1542, so despite the subtle behavior change we are treating it as a bug. Patch by Michael Lazar. | |||||
* | | | Issue #22450: Use "Accept: */*" in the default headers for urllib.request | Raymond Hettinger | 2016-09-09 | 1 | -1/+1 | |
| | | | ||||||
* | | | Merge asyncio upstream. | Guido van Rossum | 2016-09-09 | 6 | -14/+94 | |
| | | | ||||||
* | | | Rename Future._blocking to _asyncio_future_blocking. | Guido van Rossum | 2016-09-09 | 2 | -5/+14 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is now an official "protected" API that can be used to write classes that are duck-type-compatible with Future without subclassing it. (For that purpose I also changed isinstance(result, Future) to check for this attribute instead.) Hopefully Amber Brown can use this to make Twisted.Deferred compatible with asyncio.Future. Tests and docs are TBD. | |||||
* | | | #28047: Fix calculation of base64 line length. | R David Murray | 2016-09-09 | 3 | -7/+37 | |
| | | | | | | | | | | | | | | | This is buggy in the old email code as well, but it doesn't affect anything there because only the default line length is ever used there. | |||||
* | | | Issue #26513: Fixes platform module detection of Windows Server | Steve Dower | 2016-09-09 | 1 | -1/+1 | |
| | | | ||||||
* | | | Merge 3.4 | Donald Stufft | 2016-09-09 | 2 | -1/+1 | |
|\ \ \ | |/ / | ||||||
| * | | Upgrade setuptools to 27.1.2 | Donald Stufft | 2016-09-09 | 2 | -1/+1 | |
| | | | ||||||
* | | | Merge 3.4 | Donald Stufft | 2016-09-09 | 2 | -1/+1 | |
|\ \ \ | |/ / | ||||||
| * | | Upgrade setuptools to 27.1.1 | Donald Stufft | 2016-09-09 | 2 | -1/+1 | |
| | | | ||||||
| * | | Issue #27960: Revert state to 675e20c38fdac6, backing out all changes by ↵ | Jason R. Coombs | 2016-09-06 | 1 | -2/+5 | |
| | | | | | | | | | | | | developed for Issue #12885. | |||||
| * | | Issue #12885: Revert commits in 3.4 branch which is security-only fixes. | Jason R. Coombs | 2016-09-02 | 2 | -67/+29 | |
| | | | ||||||
* | | | #27630: Be consistent in how _XXX/_encoded_XXX vars are initialized. | R David Murray | 2016-09-09 | 1 | -9/+1 | |
| | | | ||||||
* | | | Issue #26020: Fix evaluation order for set literals | Raymond Hettinger | 2016-09-08 | 1 | -0/+15 | |
| | | | ||||||
* | | | Issue28010 - Make http.client.HTTPConnection.putrequest documentation ↵ | Senthil Kumaran | 2016-09-08 | 1 | -1/+2 | |
| | | | | | | | | | | | | consistent with the code. | |||||
* | | | Issue #21201: Improves readability of multiprocessing error message from ↵ | Davin Potts | 2016-09-08 | 1 | -1/+1 | |
| | | | | | | | | | | | | server to client for certain exceptions |