summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Issue #27456: asyncio: Set TCP_NODELAY by default.Yury Selivanov2016-09-121-0/+16
|
* asyncio: Add set_protocol / get_protocol methods to TransportsYury Selivanov2016-09-127-0/+45
|
* Issue #28079: Update typing and test typing from python/typing repo.Guido van Rossum2016-09-112-63/+407
| | | | Ivan Levkivskyi (3.5 version)
* #19003: Only replace \r and/or \n line endings in email.generator.R David Murray2016-09-112-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 Sajip2016-09-111-19/+20
|
* Issue #27952: Get fixcid.py working with the re moduleMartin Panter2016-09-111-0/+91
|
* Remove the debug print that i accidentally left in.Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)2016-09-111-1/+0
|
* Backported tests for issue #28070.Serhiy Storchaka2016-09-101-0/+3
|
* IDLE newx items.Terry Jan Reedy2016-09-101-0/+7
|
* Closes #28059: Fixes test_platform to set PYTHONPATH for .pyd filesSteve Dower2016-09-101-2/+9
|
* Issue #27932: Backs out changeSteve Dower2016-09-101-33/+29
|
* Correct spelling in documentation and code commentMartin Panter2016-09-102-2/+2
|
* regrtest: accept options after test namesVictor Stinner2016-09-101-1/+1
|
* Issue #28019: itertools.count() no longer rounds non-integer step in rangeSerhiy Storchaka2016-09-101-5/+23
| | | | between 1.0 and 2.0 to 1.
* Use raw string for regexpGuido van Rossum2016-09-101-1/+1
|
* Issue #25969: Update the lib2to3 grammar to handle the unpackingGregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)2016-09-106-6/+88
| | | | generalizations added in 3.5.
* remove fix_callable - callable() was readded many releases ago.Gregory P. Smith2016-09-102-129/+0
|
* Issue #27932: Fixes memory leak in platform.win32_ver()Steve Dower2016-09-101-29/+33
|
* Issue #25758: Prevents zipimport from unnecessarily encoding a filename ↵Steve Dower2016-09-101-1/+1
| | | | (patch by Eryk Sun)
* #14977: Make mailcap respect the order of the lines in the mailcap file.R David Murray2016-09-103-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.requestRaymond Hettinger2016-09-091-1/+1
|
* Merge asyncio upstream.Guido van Rossum2016-09-096-14/+94
|
* Rename Future._blocking to _asyncio_future_blocking.Guido van Rossum2016-09-092-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 Murray2016-09-093-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 ServerSteve Dower2016-09-091-1/+1
|
* Merge 3.4Donald Stufft2016-09-092-1/+1
|\
| * Upgrade setuptools to 27.1.2Donald Stufft2016-09-092-1/+1
| |
* | Merge 3.4Donald Stufft2016-09-092-1/+1
|\ \ | |/
| * Upgrade setuptools to 27.1.1Donald Stufft2016-09-092-1/+1
| |
| * Issue #27960: Revert state to 675e20c38fdac6, backing out all changes by ↵Jason R. Coombs2016-09-061-2/+5
| | | | | | | | developed for Issue #12885.
| * Issue #12885: Revert commits in 3.4 branch which is security-only fixes.Jason R. Coombs2016-09-022-67/+29
| |
* | #27630: Be consistent in how _XXX/_encoded_XXX vars are initialized.R David Murray2016-09-091-9/+1
| |
* | Issue #26020: Fix evaluation order for set literalsRaymond Hettinger2016-09-081-0/+15
| |
* | Issue28010 - Make http.client.HTTPConnection.putrequest documentation ↵Senthil Kumaran2016-09-081-1/+2
| | | | | | | | consistent with the code.
* | Issue #21201: Improves readability of multiprocessing error message from ↵Davin Potts2016-09-081-1/+1
| | | | | | | | server to client for certain exceptions
* | Issue #27445: Don't pass str(_charset) to MIMEText.set_payload()Berker Peksag2016-09-082-4/+5
| | | | | | | | Patch by Claude Paroz.
* | Issue11551 - Increase the test coverage of _dummy_thread module to 100%.Senthil Kumaran2016-09-081-41/+115
| | | | | | | | Initial patch contributed by Denver Coneybeare.
* | Fix indentation (reindent.py).Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)2016-09-081-4/+4
| |
* | lib2to3.pgen3.driver.load_grammar() now creates a stable cache fileGregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)2016-09-085-18/+111
| | | | | | | | | | between runs given the same Grammar.txt input regardless of the hash randomization setting.
* | Fixes #27930: improved QueueListener behaviour.Vinay Sajip2016-09-082-21/+90
| |
* | Issue #27993: Fix problems with plural objects in docs and commentsMartin Panter2016-09-072-4/+3
| |
* | Issue #27895: Spelling fixes (Contributed by Ville Skyttä).Martin Panter2016-09-0725-29/+29
| |
* | Issue #27570: Avoid zero-length memcpy() calls with null source pointersMartin Panter2016-09-071-2/+12
| |
* | #22233: Only split headers on \r and/or \n, per email RFCs.R David Murray2016-09-075-19/+100
| | | | | | | | Original patch by Martin Panter, new policy fixes by me.
* | 27988: Make sure iter_attachments does not mutate the payload list.R David Murray2016-09-072-1/+11
| |
* | capture stderr to silence output during test_coroutines (closes #27968)Benjamin Peterson2016-09-071-1/+2
| |
* | [backport to 3.5] - issue26896 - Disambiguate uses of "importer" with "finder".Senthil Kumaran2016-09-075-14/+12
| |
* | Issue #21250: Add tests for SQLite's ON CONFLICT clauseBerker Peksag2016-09-061-1/+100
| | | | | | | | Initial patch by Alex LordThorsen.
* | Issue #27691: Fix ssl module's parsing of GEN_RID subject alternative name ↵Christian Heimes2016-09-063-4/+105
| | | | | | | | fields in X.509 certs.
* | Issues #27850 and #27766: Remove 3DES from ssl default cipher list and add ↵Christian Heimes2016-09-061-15/+21
| | | | | | | | ChaCha20 Poly1305.