Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | merge with 3.3 | Georg Brandl | 2014-02-10 | 4 | -5/+40 |
| | |||||
* | Issue #20505: Use even shorter sleep in test_timeout_rounding() to make the | Victor Stinner | 2014-02-10 | 1 | -3/+5 |
| | | | | test more reliable (= fail more often on Windows with HPET enabled). | ||||
* | Python 3.4.0rc1: Version bump.v3.4.0rc1 | Larry Hastings | 2014-02-10 | 2 | -2/+2 |
| | |||||
* | Python 3.4.0rc1 release: Updated pydoc topics, fixed suspicious markup errors. | Larry Hastings | 2014-02-10 | 1 | -2/+2 |
| | |||||
* | Issue #20505: Add debug info to analyze sporaric failures of | Victor Stinner | 2014-02-10 | 2 | -1/+10 |
| | | | | test_timeout_rounding() on Windows XP buildbots. | ||||
* | Issue #20517: Functions in the os module that accept two filenames | Larry Hastings | 2014-02-10 | 2 | -2/+19 |
| | | | | | | now register both filenames in the exception on failure. This required adding new C API functions allowing OSError exceptions to reference two filenames instead of one. | ||||
* | asyncio: Tulip issue 112: Inline make_handle() into Handle constructor | Victor Stinner | 2014-02-09 | 6 | -14/+9 |
| | |||||
* | Issue #20571: skip test_readline() of test_codecs for Windows code page 65001. | Victor Stinner | 2014-02-09 | 1 | -0/+3 |
| | | | | The decoder does not support partial decoding yet for this code page. | ||||
* | Issue #20530: Argument Clinic's signature format has been revised again. | Larry Hastings | 2014-02-09 | 3 | -35/+170 |
| | | | | | | | The new syntax is highly human readable while still preventing false positives. The syntax also extends Python syntax to denote "self" and positional-only parameters, allowing inspect.Signature objects to be totally accurate for all supported builtins in Python 3.4. | ||||
* | asyncio: Remove more relics of resolution/granularity. | Guido van Rossum | 2014-02-09 | 2 | -6/+0 |
| | |||||
* | asyncio: Remove Process.subprocess attribute; it's too easy to get inconsistent | Victor Stinner | 2014-02-09 | 2 | -24/+0 |
| | | | | Process and Popen objects | ||||
* | asyncio: Test fix. | Guido van Rossum | 2014-02-09 | 1 | -1/+1 |
| | |||||
* | Close #20500: Don't trigger PyObject_Str assertion at shutdown | Nick Coghlan | 2014-02-09 | 1 | -0/+18 |
| | |||||
* | asyncio tests: Remove scories of resolution/granularity | Victor Stinner | 2014-02-09 | 2 | -3/+0 |
| | |||||
* | Merge: #14983: always add a line end after a MIME boundary marker. | R David Murray | 2014-02-08 | 3 | -7/+12 |
|\ | |||||
| * | #14983: always add a line end after a MIME boundary marker. | R David Murray | 2014-02-08 | 3 | -7/+12 |
| | | | | | | | | | | | | | | | | | | 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. | ||||
* | | Issue #20540: Fix a performance regression (vs. Python 3.2) when layering a ↵ | Antoine Pitrou | 2014-02-08 | 1 | -6/+16 |
|\ \ | |/ | | | | | | | | | 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 | 1 | -6/+16 |
| | | | | | | | | | | | | multiprocessing Connection over a TCP socket. For small payloads, Nagle's algorithm would introduce idle delays before the entire transmission of a message. | ||||
* | | Close issue20534: all pickle protocols now supported. | Ethan Furman | 2014-02-08 | 2 | -18/+222 |
| | | |||||
* | | Merge: #16983: Apply postel's law to encoded words inside quoted strings. | R David Murray | 2014-02-08 | 3 | -0/+26 |
|\ \ | |/ | |||||
| * | #16983: Apply postel's law to encoded words inside quoted strings. | R David Murray | 2014-02-08 | 3 | -0/+26 |
| | | | | | | | | | | | | | | | | | | | | 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 | 3 | -2/+26 |
|\ \ | |/ | |||||
| * | #19772: Do not mutate message when downcoding to 7bit. | R David Murray | 2014-02-08 | 2 | -1/+25 |
| | | | | | | | | | | | | | | | | | | 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 | 8 | -1/+13 |
|\ \ | |/ | | | | | Patch mostly by Serhiy Storchaka. | ||||
| * | Issue #20406: Use Python application icons for Idle window title bars. | Terry Jan Reedy | 2014-02-08 | 8 | -1/+13 |
| | | | | | | | | Patch mostly by Serhiy Storchaka. | ||||
* | | Close #20536: correctly handle Decimal exponents in statistics | Nick Coghlan | 2014-02-08 | 2 | -1/+43 |
| | | |||||
* | | Merge fix for #18805 from 3.3 | Nick Coghlan | 2014-02-08 | 2 | -85/+136 |
|\ \ | |/ | |||||
| * | Issue #18805: better netmask validation in ipaddress | Nick Coghlan | 2014-02-08 | 2 | -85/+136 |
| | | |||||
* | | 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 | 1 | -8/+33 |
|\ \ | |/ | | | | | input was truncated in BASE64 section. | ||||
| * | Issue #20538: UTF-7 incremental decoder produced inconsistant string when | Serhiy Storchaka | 2014-02-08 | 1 | -6/+33 |
| | | | | | | | | input was truncated in BASE64 section. | ||||
* | | Close #20481: Disallow mixed type input in statistics | Nick Coghlan | 2014-02-08 | 2 | -76/+50 |
| | | | | | | | | | | | | | | 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 | 2 | -3/+9 |
| | | | | | | | | | | | | | | | | | | 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) | ||||
* | | Issue #20505: Remove resolution and _granularity from selectors and asyncio | Victor Stinner | 2014-02-07 | 7 | -57/+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 | 2 | -0/+24 |
|\ \ | |/ | |||||
| * | #17369: Improve handling of broken RFC2231 values in get_filename. | R David Murray | 2014-02-07 | 2 | -0/+24 |
| | | | | | | | | This fixes a regression relative to python2. | ||||
| * | #20013: don't raise socket error when selected mailbox deleted. | R David Murray | 2014-02-07 | 1 | -0/+5 |
| | | | | | | | | | | | | | | | | 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. | ||||
* | | #20013: don't raise socket error when selected mailbox deleted. | R David Murray | 2014-02-07 | 1 | -0/+5 |
| | | | | | | | | | | | | | | | | 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. | ||||
* | | Merge: #19063: the unicode-in-set_payload problem isn't getting fixed in 3.4. | R David Murray | 2014-02-07 | 1 | -4/+3 |
|\ \ | |/ | |||||
| * | #19063: the unicode-in-set_payload problem isn't getting fixed in 3.4. | R David Murray | 2014-02-07 | 1 | -4/+3 |
| | | |||||
* | | #20531: Apply the 3.3 version of the #19063 fix. | R David Murray | 2014-02-07 | 3 | -11/+58 |
| | | | | | | | | | | So passing unicode to set_payload works again (but still doesn't do what you want when the message is serialized). | ||||
* | | #20531: Revert e20f98a8ed71, the 3.4 version of the #19063 fix. | R David Murray | 2014-02-07 | 4 | -71/+37 |
| | |