summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* merge with 3.3Georg Brandl2014-02-104-5/+40
|
* Issue #20505: Use even shorter sleep in test_timeout_rounding() to make theVictor Stinner2014-02-101-3/+5
| | | | test more reliable (= fail more often on Windows with HPET enabled).
* Python 3.4.0rc1: Version bump.v3.4.0rc1Larry Hastings2014-02-102-2/+2
|
* Python 3.4.0rc1 release: Updated pydoc topics, fixed suspicious markup errors.Larry Hastings2014-02-101-2/+2
|
* Issue #20505: Add debug info to analyze sporaric failures ofVictor Stinner2014-02-102-1/+10
| | | | test_timeout_rounding() on Windows XP buildbots.
* Issue #20517: Functions in the os module that accept two filenamesLarry Hastings2014-02-102-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 constructorVictor Stinner2014-02-096-14/+9
|
* Issue #20571: skip test_readline() of test_codecs for Windows code page 65001.Victor Stinner2014-02-091-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 Hastings2014-02-093-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 Rossum2014-02-092-6/+0
|
* asyncio: Remove Process.subprocess attribute; it's too easy to get inconsistentVictor Stinner2014-02-092-24/+0
| | | | Process and Popen objects
* asyncio: Test fix.Guido van Rossum2014-02-091-1/+1
|
* Close #20500: Don't trigger PyObject_Str assertion at shutdownNick Coghlan2014-02-091-0/+18
|
* asyncio tests: Remove scories of resolution/granularityVictor Stinner2014-02-092-3/+0
|
* Merge: #14983: always add a line end after a MIME boundary marker.R David Murray2014-02-083-7/+12
|\
| * #14983: always add a line end after a MIME boundary marker.R David Murray2014-02-083-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 Pitrou2014-02-081-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 Pitrou2014-02-081-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 Furman2014-02-082-18/+222
| |
* | Merge: #16983: Apply postel's law to encoded words inside quoted strings.R David Murray2014-02-083-0/+26
|\ \ | |/
| * #16983: Apply postel's law to encoded words inside quoted strings.R David Murray2014-02-083-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 Murray2014-02-083-2/+26
|\ \ | |/
| * #19772: Do not mutate message when downcoding to 7bit.R David Murray2014-02-082-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 Storchaka2014-02-081-18/+17
|\ \ | |/
| * Issue #20553. Use specific asserts in ipaddress tests.Serhiy Storchaka2014-02-081-18/+17
| |
* | Issue #20406: Use Python application icons for Idle window title bars.Terry Jan Reedy2014-02-088-1/+13
|\ \ | |/ | | | | Patch mostly by Serhiy Storchaka.
| * Issue #20406: Use Python application icons for Idle window title bars.Terry Jan Reedy2014-02-088-1/+13
| | | | | | | | Patch mostly by Serhiy Storchaka.
* | Close #20536: correctly handle Decimal exponents in statisticsNick Coghlan2014-02-082-1/+43
| |
* | Merge fix for #18805 from 3.3Nick Coghlan2014-02-082-85/+136
|\ \ | |/
| * Issue #18805: better netmask validation in ipaddressNick Coghlan2014-02-082-85/+136
| |
* | Issue #20549: Use specific asserts in mailbox, smtplib and poplib tests.Serhiy Storchaka2014-02-083-29/+30
|\ \ | |/
| * Issue #20549: Use specific asserts in mailbox, smtplib and poplib tests.Serhiy Storchaka2014-02-083-29/+30
| |
* | Issue #20555: Use specific asserts in urllib, httplib, ftplib, cgi, wsgiref ↵Serhiy Storchaka2014-02-088-26/+27
|\ \ | |/ | | | | tests.
| * Issue #20555: Use specific asserts in urllib, httplib, ftplib, cgi, wsgiref ↵Serhiy Storchaka2014-02-088-26/+27
| | | | | | | | tests.
* | Issue #20546: Use specific asserts in int tests.Serhiy Storchaka2014-02-081-24/+24
|\ \ | |/
| * Issue #20546: Use specific asserts in int tests.Serhiy Storchaka2014-02-081-24/+24
| |
* | Issue #20538: UTF-7 incremental decoder produced inconsistant string whenSerhiy Storchaka2014-02-081-8/+33
|\ \ | |/ | | | | input was truncated in BASE64 section.
| * Issue #20538: UTF-7 incremental decoder produced inconsistant string whenSerhiy Storchaka2014-02-081-6/+33
| | | | | | | | input was truncated in BASE64 section.
* | Close #20481: Disallow mixed type input in statisticsNick Coghlan2014-02-082-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 Reedy2014-02-081-4/+23
| | | | | | | | Original patch by Tal Einat.
* | Issue #20478: avoid special casing Counter in statisticsNick Coghlan2014-02-082-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 asyncioVictor Stinner2014-02-077-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 Murray2014-02-072-0/+24
|\ \ | |/
| * #17369: Improve handling of broken RFC2231 values in get_filename.R David Murray2014-02-072-0/+24
| | | | | | | | This fixes a regression relative to python2.
| * #20013: don't raise socket error when selected mailbox deleted.R David Murray2014-02-071-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 Murray2014-02-071-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 Murray2014-02-071-4/+3
|\ \ | |/
| * #19063: the unicode-in-set_payload problem isn't getting fixed in 3.4.R David Murray2014-02-071-4/+3
| |
* | #20531: Apply the 3.3 version of the #19063 fix.R David Murray2014-02-073-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 Murray2014-02-074-71/+37
| |