- 23 Jun, 2013 26 commits
-
-
Raymond Hettinger authored
* Clarified comment on the impact of BLOCKLEN on deque_index (with a power-of-two, the division and modulo computations are done with a right-shift and bitwise-and). * Clarified comment on the overflow check to note that it is general and not just applicable the 64-bit builds. * In deque._rotate(), the "deque->" indirections are factored-out of the loop (loop invariant code motion), leaving the code cleaner looking and slightly faster. * In deque._rotate(), replaced the memcpy() with an equivalent loop. That saved the memcpy setup time and allowed the pointers to move in their natural leftward and rightward directions. See comparative timings at: http://pastebin.com/p0RJnT5N
-
Victor Stinner authored
-
Christian Heimes authored
-
Christian Heimes authored
Add extra braces to S_IS*() macros
-
R David Murray authored
-
R David Murray authored
-
R David Murray authored
Original patch by Berker Peksag.
-
R David Murray authored
Original patch by Berker Peksag.
-
R David Murray authored
This provides a way to specify arbitrary doctest options when using the CLI interface to process test files, just as one can when calling testmod or testfile programmatically.
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
OverflowError when an argument of %c format is out of range.
-
Serhiy Storchaka authored
OverflowError when an argument of %c format is out of range.
-
Łukasz Langa authored
-
Łukasz Langa authored
-
Christian Heimes authored
for symlinks.
-
Christian Heimes authored
for symlinks.
-
Christian Heimes authored
-
Christian Heimes authored
-
Christian Heimes authored
-
Victor Stinner authored
ssl.SSLSocket.write() and in ssl.SSLContext.load_cert_chain() for strings and passwords longer than 2 gigabytes.
-
Victor Stinner authored
and in ssl.SSLContext.load_cert_chain() for strings and passwords longer than 2 gigabytes.
-
Victor Stinner authored
-
Victor Stinner authored
float.__format__() and complex.__format__().
-
Victor Stinner authored
complex.__format__().
-
- 22 Jun, 2013 13 commits
-
-
Victor Stinner authored
-
Andrew Kuchling authored
-
Andrew Kuchling authored
-
Andrew Kuchling authored
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
'Find in files' by replacing 'open with implicit close' by 'with open' in GrepDialog method grep_it. Streamline code with enumerate(), direct file iteration, and output tweak. Add test for this method, including output format.
-
Christian Heimes authored
-
Andrew Kuchling authored
-
Andrew Kuchling authored
Problem noted & original patch by Serhiy Storchaka; I tweaked the patch a bit.
-
Christian Heimes authored
-
Christian Heimes authored
-
- 21 Jun, 2013 1 commit
-
-
Brett Cannon authored
-