Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Note the new debug assertion in PyObject_Str | Nick Coghlan | 2014-02-09 | 2 | -0/+11 |
| | |||||
* | Close #20500: Don't trigger PyObject_Str assertion at shutdown | Nick Coghlan | 2014-02-09 | 4 | -2/+28 |
| | |||||
* | merge | Brian Curtin | 2014-02-09 | 1 | -1/+1 |
|\ | |||||
| * | asyncio doc: fix gather() doc | Victor Stinner | 2014-02-09 | 1 | -1/+1 |
| | | |||||
* | | Spelling corrections. Submitted to python-dev by python@mrabarnett.plus.com | Brian Curtin | 2014-02-09 | 4 | -7/+7 |
|/ | |||||
* | asyncio tests: Remove scories of resolution/granularity | Victor Stinner | 2014-02-09 | 2 | -3/+0 |
| | |||||
* | Tweaks to What's New and some referenced docs | Nick Coghlan | 2014-02-09 | 3 | -15/+40 |
| | |||||
* | Close #20563: Declare ipaddress API stable | Nick Coghlan | 2014-02-08 | 3 | -7/+13 |
| | |||||
* | Merge: #14983: always add a line end after a MIME boundary marker. | R David Murray | 2014-02-08 | 4 | -7/+16 |
|\ | |||||
| * | #14983: always add a line end after a MIME boundary marker. | R David Murray | 2014-02-08 | 4 | -7/+16 |
| | | | | | | | | | | | | | | | | | | This is more RFC compliant (see issue) and fixes a problem with signature verifiers rejecting the part when signed. There is some amount of backward compatibility concern here since it changes the output, but the RFC issue coupled with fixing the problem with signature verifiers seems worth the small risk of breaking code that depends on the current incorrect output. | ||||
* | | merge from 3.3 | Senthil Kumaran | 2014-02-08 | 1 | -7/+8 |
|\ \ | |/ | | | | | | | Include the mention of ResourceWarning being displayed by default by the test runner. Addressing #issue 20529 | ||||
| * | Include the mention of ResourceWarning being displayed by default by the ↵ | Senthil Kumaran | 2014-02-08 | 1 | -7/+8 |
| | | | | | | | | | | | | test runner. Addressing #issue 20529 | ||||
* | | asyncio doc: document missing event loop methods | Victor Stinner | 2014-02-08 | 1 | -4/+86 |
| | | |||||
* | | asyncio doc: sort methods | Victor Stinner | 2014-02-08 | 1 | -5/+5 |
| | | |||||
* | | Issue #20540: Fix a performance regression (vs. Python 3.2) when layering a ↵ | Antoine Pitrou | 2014-02-08 | 2 | -6/+21 |
|\ \ | |/ | | | | | | | | | multiprocessing Connection over a TCP socket. For small payloads, Nagle's algorithm would introduce idle delays before the entire transmission of a message. | ||||
| * | Issue #20540: Fix a performance regression (vs. Python 3.2) when layering a ↵ | Antoine Pitrou | 2014-02-08 | 2 | -6/+21 |
| | | | | | | | | | | | | multiprocessing Connection over a TCP socket. For small payloads, Nagle's algorithm would introduce idle delays before the entire transmission of a message. | ||||
* | | Merge. | Charles-François Natali | 2014-02-08 | 3 | -21/+233 |
|\ \ | |||||
| * | | Close issue20534: all pickle protocols now supported. | Ethan Furman | 2014-02-08 | 3 | -21/+233 |
| | | | |||||
* | | | Issue #20065: socketmodule: Fix build error when AF_CAN is defined without the | Charles-François Natali | 2014-02-08 | 1 | -3/+3 |
|\ \ \ | |/ / |/| / | |/ | proper CAN headers. | ||||
| * | Issue #20065: socketmodule: Fix build error when AF_CAN is defined without the | Charles-François Natali | 2014-02-08 | 1 | -3/+3 |
| | | | | | | | | proper CAN headers. | ||||
* | | Merge: #16983: Apply postel's law to encoded words inside quoted strings. | R David Murray | 2014-02-08 | 4 | -0/+29 |
|\ \ | |/ | |||||
| * | #16983: Apply postel's law to encoded words inside quoted strings. | R David Murray | 2014-02-08 | 4 | -0/+29 |
| | | | | | | | | | | | | | | | | | | | | This applies only to the new parser. The old parser decodes encoded words inside quoted strings already, although it gets the whitespace wrong when it does so. This version of the patch only handles the most common case (a single encoded word surrounded by quotes), but I haven't seen any other variations of this in the wild yet, so its good enough for now. | ||||
* | | Merge #19772: Do not mutate message when downcoding to 7bit. | R David Murray | 2014-02-08 | 4 | -2/+29 |
|\ \ | |/ | |||||
| * | #19772: Do not mutate message when downcoding to 7bit. | R David Murray | 2014-02-08 | 3 | -1/+28 |
| | | | | | | | | | | | | | | | | | | This is a bit of an ugly hack because of the way generator pieces together the output message. The deepcopys aren't too expensive, though, because we know it is only called on messages that are not multiparts, and the payload (the thing that could be large) is an immutable object. Test and preliminary work on patch by Vajrasky Kok. | ||||
* | | Issue #20553. Use specific asserts in ipaddress tests. | Serhiy Storchaka | 2014-02-08 | 1 | -18/+17 |
|\ \ | |/ | |||||
| * | Issue #20553. Use specific asserts in ipaddress tests. | Serhiy Storchaka | 2014-02-08 | 1 | -18/+17 |
| | | |||||
* | | Issue #20406: Use Python application icons for Idle window title bars. | Terry Jan Reedy | 2014-02-08 | 9 | -1/+16 |
|\ \ | |/ | | | | | Patch mostly by Serhiy Storchaka. | ||||
| * | Issue #20406: Use Python application icons for Idle window title bars. | Terry Jan Reedy | 2014-02-08 | 9 | -1/+16 |
| | | | | | | | | Patch mostly by Serhiy Storchaka. | ||||
* | | Close #20536: correctly handle Decimal exponents in statistics | Nick Coghlan | 2014-02-08 | 3 | -1/+46 |
| | | |||||
* | | Merge #18805 NEWS fix from 3.3 | Nick Coghlan | 2014-02-08 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Fix #18805 NEWS entry | Nick Coghlan | 2014-02-08 | 1 | -1/+1 |
| | | |||||
* | | Merge fix for #18805 from 3.3 | Nick Coghlan | 2014-02-08 | 3 | -85/+139 |
|\ \ | |/ | |||||
| * | Issue #18805: better netmask validation in ipaddress | Nick Coghlan | 2014-02-08 | 3 | -85/+139 |
| | | |||||
* | | Issue #20549: Use specific asserts in mailbox, smtplib and poplib tests. | Serhiy Storchaka | 2014-02-08 | 3 | -29/+30 |
|\ \ | |/ | |||||
| * | Issue #20549: Use specific asserts in mailbox, smtplib and poplib tests. | Serhiy Storchaka | 2014-02-08 | 3 | -29/+30 |
| | | |||||
* | | Issue #20555: Use specific asserts in urllib, httplib, ftplib, cgi, wsgiref ↵ | Serhiy Storchaka | 2014-02-08 | 8 | -26/+27 |
|\ \ | |/ | | | | | tests. | ||||
| * | Issue #20555: Use specific asserts in urllib, httplib, ftplib, cgi, wsgiref ↵ | Serhiy Storchaka | 2014-02-08 | 8 | -26/+27 |
| | | | | | | | | tests. | ||||
* | | Issue #20546: Use specific asserts in int tests. | Serhiy Storchaka | 2014-02-08 | 1 | -24/+24 |
|\ \ | |/ | |||||
| * | Issue #20546: Use specific asserts in int tests. | Serhiy Storchaka | 2014-02-08 | 1 | -24/+24 |
| | | |||||
* | | Issue #20538: UTF-7 incremental decoder produced inconsistant string when | Serhiy Storchaka | 2014-02-08 | 3 | -9/+45 |
|\ \ | |/ | | | | | input was truncated in BASE64 section. | ||||
| * | Issue #20538: UTF-7 incremental decoder produced inconsistant string when | Serhiy Storchaka | 2014-02-08 | 3 | -7/+45 |
| | | | | | | | | input was truncated in BASE64 section. | ||||
* | | Close #20481: Disallow mixed type input in statistics | Nick Coghlan | 2014-02-08 | 4 | -76/+66 |
| | | | | | | | | | | | | | | The most appropriate coercion rules are not yet clear, so simply disallowing mixed type input for 3.4. (Committed on Steven's behalf) | ||||
* | | Issue #20167: Suppress 3.4 specific 'Exception ignored' messages. | Terry Jan Reedy | 2014-02-08 | 1 | -4/+23 |
| | | | | | | | | Original patch by Tal Einat. | ||||
* | | Issue #20478: avoid special casing Counter in statistics | Nick Coghlan | 2014-02-08 | 3 | -3/+12 |
| | | | | | | | | | | | | | | | | | | Passing Counter objects to the Counter constructor is special cased, going through iter() firsts ensures they are handled the same way as any other iterable. (Committing on Steven's behalf as I don't believe his SSH key is registered yet) | ||||
* | | More asyncio news. | Guido van Rossum | 2014-02-08 | 1 | -4/+10 |
| | | |||||
* | | Issue #20505: Remove resolution and _granularity from selectors and asyncio | Victor Stinner | 2014-02-07 | 9 | -74/+10 |
| | | | | | | | | | | * Remove selectors.BaseSelector.resolution attribute * Remove asyncio.BaseEventLoop._granularity attribute | ||||
* | | Merge: #17369: Improve handling of broken RFC2231 values in get_filename. | R David Murray | 2014-02-07 | 3 | -0/+28 |
|\ \ | |/ | |||||
| * | #17369: Improve handling of broken RFC2231 values in get_filename. | R David Murray | 2014-02-07 | 3 | -0/+28 |
| | | | | | | | | This fixes a regression relative to python2. | ||||
* | | Null merge of commit accidentally made to default branch first. | R David Murray | 2014-02-07 | 0 | -0/+0 |
|\ \ | |/ | |||||
| * | #20013: don't raise socket error when selected mailbox deleted. | R David Murray | 2014-02-07 | 2 | -0/+9 |
| | | | | | | | | | | | | | | | | I'm checking this in without a test because not much of this code is tested and I don't have time to work up the necessary extensions to the existing test framework. The patch itself was tested by the person who reported the bug. |