- 25 Haz, 2013 7 kayıt (commit)
-
-
Victor Stinner yazdı
-
Victor Stinner yazdı
(test.regrtest and test.script_helper enable faulthandler module in subprocesses).
-
Victor Stinner yazdı
in subprocesses.
-
R David Murray yazdı
-
Raymond Hettinger yazdı
-
Victor Stinner yazdı
time.strtime("%Y") returned "2345" when formatting year 12345.
-
Victor Stinner yazdı
time.strtime("%Y") returned "2345" when formatting year 12345.
-
- 24 Haz, 2013 25 kayıt (commit)
-
-
Victor Stinner yazdı
-
Victor Stinner yazdı
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 yazdı
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 yazdı
-
Victor Stinner yazdı
"import idlelib" should not install hooks on the warning modules, hooks should only be installed when IDLE is started.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
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 yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Ned Deily yazdı
-
Ned Deily yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Richard Oudkerk yazdı
-
Richard Oudkerk yazdı
-
Richard Oudkerk yazdı
-
Richard Oudkerk yazdı
-
Richard Oudkerk yazdı
-
Richard Oudkerk yazdı
-
Richard Oudkerk yazdı
-
Richard Oudkerk yazdı
-
Christian Heimes yazdı
-
Christian Heimes yazdı
-
- 23 Haz, 2013 8 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
* 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 yazdı
-
Christian Heimes yazdı
of arbitrary looking numbers.
-
Christian Heimes yazdı
-
Christian Heimes yazdı
-
Victor Stinner yazdı
-
Christian Heimes yazdı
-