- 25 Jun, 2013 9 commits
-
-
Victor Stinner authored
-
Victor Stinner authored
On AIX, the C function mktime() alwaysd sets tm_wday, even on error. So tm_wday cannot be used as a sentinel to detect an error, we can only check if the result is (time_t)-1.
-
Victor Stinner authored
-
Victor Stinner authored
(test.regrtest and test.script_helper enable faulthandler module in subprocesses).
-
Victor Stinner authored
in subprocesses.
-
R David Murray authored
-
Raymond Hettinger authored
-
Victor Stinner authored
time.strtime("%Y") returned "2345" when formatting year 12345.
-
Victor Stinner authored
time.strtime("%Y") returned "2345" when formatting year 12345.
-
- 24 Jun, 2013 25 commits
-
-
Victor Stinner authored
-
Victor Stinner authored
the input string in longer than 2 gigabytes, and ssl.SSLContext.load_cert_chain() raises a ValueError if the password is longer than 2 gigabytes. The ssl module does not support partial write.
-
Victor Stinner authored
string in longer than 2 gigabytes, and ssl.SSLContext.load_cert_chain() raises a ValueError if the password is longer than 2 gigabytes. The ssl module does not support partial write.
-
Victor Stinner authored
-
Victor Stinner authored
"import idlelib" should not install hooks on the warning modules, hooks should only be installed when IDLE is started.
-
Victor Stinner authored
-
Victor Stinner authored
of socket.socket objects now truncate the input buffer to INT_MAX bytes on Windows to avoid an integer overflow. (sendall() still send the whole buffer.)
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Ned Deily authored
-
Ned Deily authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Richard Oudkerk authored
-
Richard Oudkerk authored
-
Richard Oudkerk authored
-
Richard Oudkerk authored
-
Richard Oudkerk authored
-
Richard Oudkerk authored
-
Richard Oudkerk authored
-
Richard Oudkerk authored
-
Christian Heimes authored
-
Christian Heimes authored
-
- 23 Jun, 2013 6 commits
-
-
Raymond Hettinger authored
-
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
-
Christian Heimes authored
-
Christian Heimes authored
of arbitrary looking numbers.
-
Christian Heimes authored
-
Christian Heimes authored
-