- 08 Şub, 2014 32 kayıt (commit)
-
-
Victor Stinner yazdı
-
Antoine Pitrou yazdı
Issue #20540: Fix a performance regression (vs. Python 3.2) when layering a multiprocessing Connection over a TCP socket. For small payloads, Nagle's algorithm would introduce idle delays before the entire transmission of a message.
-
Antoine Pitrou yazdı
Issue #20540: Fix a performance regression (vs. Python 3.2) when layering a multiprocessing Connection over a TCP socket. For small payloads, Nagle's algorithm would introduce idle delays before the entire transmission of a message.
-
Charles-François Natali yazdı
-
Charles-François Natali yazdı
proper CAN headers.
-
Charles-François Natali yazdı
proper CAN headers.
-
Ethan Furman yazdı
-
R David Murray yazdı
-
R David Murray yazdı
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.
-
R David Murray yazdı
-
R David Murray yazdı
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.
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Terry Jan Reedy yazdı
Patch mostly by Serhiy Storchaka.
-
Terry Jan Reedy yazdı
Patch mostly by Serhiy Storchaka.
-
Nick Coghlan yazdı
-
Nick Coghlan yazdı
-
Nick Coghlan yazdı
-
Nick Coghlan yazdı
-
Nick Coghlan yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
input was truncated in BASE64 section.
-
Serhiy Storchaka yazdı
input was truncated in BASE64 section.
-
Nick Coghlan yazdı
The most appropriate coercion rules are not yet clear, so simply disallowing mixed type input for 3.4. (Committed on Steven's behalf)
-
Terry Jan Reedy yazdı
Original patch by Tal Einat.
-
Nick Coghlan yazdı
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)
-
Guido van Rossum yazdı
-
- 07 Şub, 2014 8 kayıt (commit)
-
-
Victor Stinner yazdı
* Remove selectors.BaseSelector.resolution attribute * Remove asyncio.BaseEventLoop._granularity attribute
-
R David Murray yazdı
-
R David Murray yazdı
This fixes a regression relative to python2.
-
R David Murray yazdı
-
R David Murray yazdı
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.
-
R David Murray yazdı
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.
-
R David Murray yazdı
-
R David Murray yazdı
-