- 42aa9c0 Issues #23363, #23364, #23365, #23366: Fixed itertools overflow tests. by Serhiy Storchaka · 10 years ago
- dda9121 check for overflows in permutations() and product() (closes #23363, closes #23364) by Benjamin Peterson · 10 years ago
- 17845c1 check for overflow in combinations_with_replacement (closes #23365) by Benjamin Peterson · 10 years ago
- 021dec1 detect overflow in combinations (closes #23366) by Benjamin Peterson · 10 years ago
- 0a7fc53 Issue #23370: Fix off-by-one error for non-contiguous buffers. by Stefan Krah · 10 years ago
- 5606cd9 Issue #23349: Fix off-by-one error in PyBuffer_ToContiguous(). Initial patch by Stefan Krah · 10 years ago
- a99e48c ifdef our way to compatibility with old openssl (closes #23335) by Benjamin Peterson · 10 years ago
- f4bb231 disable ALPN on LibreSSL, which has a large version number, but not ALPN support (closes #23329) by Benjamin Peterson · 10 years ago
- aa70758 prefer server alpn ordering over the client's by Benjamin Peterson · 10 years ago
- b10bfbe pep 466 backport of alpn (#20188) by Benjamin Peterson · 10 years ago
- c3edc19 Issue #23248: Update ssl error codes from latest OpenSSL git master. by Antoine Pitrou · 10 years ago
- e8c9e14 Issue #23181: More "codepoint" -> "code point". by Serhiy Storchaka · 10 years ago
- 2098d61 Issue #23098: 64-bit dev_t is now supported in the os module. by Serhiy Storchaka · 10 years ago
- 07f9047 fix instances of consecutive articles (closes #23221) by Benjamin Peterson · 10 years ago
- a024f80 Issue #21902: Replace incorrect 'hyperbolic arc sine' (etc.) with 'inverse hyperbolic sine' (etc.). Remove meaningless reference to radians. by Mark Dickinson · 10 years ago
- 7c90667 Issue #21356: Make ssl.RAND_egd() optional to support LibreSSL. The by Victor Stinner · 10 years ago
- 53ae614 allow more operations to work on detached streams (closes #23093) by Benjamin Peterson · 10 years ago
- daa491b merge 2.7.9 release branch by Benjamin Peterson · 10 years ago
- 60766c4 allow ssl module to compile if openssl doesn't support SSL 3 (closes #22935) by Benjamin Peterson · 10 years ago
- 0f8f784 Removed duplicated words in in comments and docs. by Serhiy Storchaka · 10 years ago
- 31aa69e allow hostname to be passed to SSLContext even if OpenSSL doesn't support SNI (closes #22921) by Benjamin Peterson · 10 years ago
- 069bdcb Issue #22821: Fixed fcntl() with integer argument on 64-bit big-endian by Serhiy Storchaka · 10 years ago
- 9dcab59 fix test where sizeof(long) != sizeof(int) by Benjamin Peterson · 10 years ago
- 31221a7 Issue #20160: broken ctypes calling convention on MSVC / 64-bit Windows (large structs). Patch by mattip by Steve Dower · 10 years ago
- 06c1497 Issue #22773: fix failing test with old readline versions due to issue #19884. by Antoine Pitrou · 10 years ago
- 93c4133 allow keyfile argument to be None (closes #22787) by Benjamin Peterson · 10 years ago
- 55bf20a #13096: Fix segfault in CTypes POINTER handling of large values. by R David Murray · 10 years ago
- 3d1f2d3 make _socket.socket weakrefable (closes #22569) by Benjamin Peterson · 10 years ago
- fe3c80b Closes #19342: improve docstrings in grp module. by Georg Brandl · 10 years ago
- 2f33456 fix sslwrap_simple (closes #22523) by Benjamin Peterson · 10 years ago
- bc4ece5 allow longs as indexes to group() (closes #22530) by Benjamin Peterson · 10 years ago
- 1c873bf clear BufferedRWPair weakrefs on deallocation (closes #22517) by Benjamin Peterson · 10 years ago
- b5dc3dc Issue #21860: Correct docstrings of FileIO.seek() and FileIO.truncate() methods. by Berker Peksag · 10 years ago
- 0aa6562 Issue #21147: sqlite3 now raises an exception if the request contains a null by Serhiy Storchaka · 10 years ago
- 17c0178 Issue #21951: Fixed a crash in Tkinter on AIX when called Tcl command with by Serhiy Storchaka · 10 years ago
- 1c09c0e Issue #21951: Use attemptckalloc() instead of ckalloc() in Tkinter. by Serhiy Storchaka · 10 years ago
- 77a64bf - Issue #22381: Update zlib to 1.2.8. by doko@ubuntu.com · 10 years ago
- e98205d Issue #20421: Add a .version() method to SSL sockets exposing the actual protocol version in use. by Alex Gaynor · 10 years ago
- 0062d1e PEP 466: backport hashlib algorithm constants (closes #21307) by Benjamin Peterson · 10 years ago
- 876473e fix load_verify_locations on unicode paths (closes #22244) by Benjamin Peterson · 10 years ago
- e373754 don't segfault when trying to fdopen() a fd for a dir (closes #22259) by Benjamin Peterson · 10 years ago
- 7ed3e29 fix error message for invalid curve name by Benjamin Peterson · 10 years ago
- b47b54c Backed out changeset 7c19f1f792c6 by Benjamin Peterson · 10 years ago
- 64c1215 don't call rl_initialize when stdout is not a tty by Benjamin Peterson · 10 years ago
- cbb144a PyUnicode -> PyString and PyLong -> PyInt by Benjamin Peterson · 10 years ago
- daeb925 backport many ssl features from Python 3 (closes #21308) by Benjamin Peterson · 10 years ago
- cbee972 Issue #15696: Add a __sizeof__ implementation for mmap objects on Windows. by Serhiy Storchaka · 10 years ago
- f880bff Removed useless Py_LIMITED_API checks. by Serhiy Storchaka · 10 years ago
- baa84b8 - Issue #22176: Update the ctypes module's libffi to v3.1. This release by doko@ubuntu.com · 10 years ago
- 501da1d Issue #21975: Fixed crash when using uninitialized sqlite3.Row (in particular by Serhiy Storchaka · 10 years ago
- 04fa704 Issue #21580: Now Tkinter correctly handles binary "data" and "maskdata" by Serhiy Storchaka · 10 years ago
- 0a649c7 Fix repr(_socket.socket) on Windows 64-bit: don't fail with OverflowError by Victor Stinner · 10 years ago
- 465db3c socketmodule.c: backport INVALID_SOCKET from Python 3.5 to simplify the code by Victor Stinner · 10 years ago
- 1d9457d Issue #19884, readline: calling rl_variable_bind ("enable-meta-key", "off") by Victor Stinner · 10 years ago
- 63a4747 Issue #19884: readline: Disable the meta modifier key if stdout is not a by Victor Stinner · 10 years ago
- 5d93f40 Call PyErr_NoMemory() when PyMem_Malloc() fails. by Serhiy Storchaka · 10 years ago
- a830501 properly decref the return value of close() by Benjamin Peterson · 10 years ago
- f6b3c84 Issue #21090: io.FileIO.readall() does not ignore I/O errors anymore. Before, by Victor Stinner · 10 years ago
- 58ad245 Issue #19145: Fix handling of negative values for a "times" keyword argument to itertools.repeat()> by Raymond Hettinger · 10 years ago
- 05b0a1b Issue #21310: Fixed possible resource leak in failed open(). by Serhiy Storchaka · 10 years ago
- 48f2e99 backport hashlib.pbkdf2_hmac per PEP 466 (closes #21304) by Benjamin Peterson · 10 years ago
- 529a639 Fixed possible integer overflow in getint, getdouble and getboolean too (issue #21552). by Serhiy Storchaka · 10 years ago
- 2a0220b Issue #21552: Fixed possible integer overflow of too long string lengths in by Serhiy Storchaka · 10 years ago
- 30080fd Issue #10203: sqlite3.Row now truly supports sequence protocol. In particular by Serhiy Storchaka · 10 years ago
- d3d2363 support pep 3118 format strings for ctypes objects with nontrivial shapes (closes #10744) by Benjamin Peterson · 10 years ago
- 8c16605 use logical rather than bit and by Benjamin Peterson · 10 years ago
- a1ccfb5 cast away warnings by Benjamin Peterson · 10 years ago
- 629026a backport hmac.compare_digest to partially implement PEP 466 (closes #21306) by Benjamin Peterson · 10 years ago
- 9343489 Issue 21375: Fix possible Py_ssizet overflow in heapq. by Raymond Hettinger · 11 years ago
- 3ec903f Issue #21321: itertools.islice() now releases the reference to the source iterator when the slice is exhausted. by Antoine Pitrou · 11 years ago
- be580f2 Issue #20434 Correct error handlin of _PyString_Resize and _PyBytes_Resize by Kristján Valur Jónsson · 11 years ago
- 68e85e5 #15840: make docs consistent by saying operations on closed files raise ValueError. by Andrew Kuchling · 11 years ago
- 7fc8a10 add missing NULL check by Benjamin Peterson · 11 years ago
- 5c863bf when an exception is raised in fdopen, never close the fd (changing on my mind on #21191) by Benjamin Peterson · 11 years ago
- 3e5d87b disallow a negative idx parameter by Benjamin Peterson · 11 years ago
- 6c939cb in scan_once, prevent the reading of arbitrary memory when passed a negative index by Benjamin Peterson · 11 years ago
- 02ab7a8 make sure fdopen always closes the fd in error cases (closes #21191) by Benjamin Peterson · 11 years ago
- d42f60e fix overflow detection of strop.expandtabs by Benjamin Peterson · 11 years ago
- b693e9f Issue #6676: Ensure a meaningful exception is raised when attempting by Ned Deily · 11 years ago
- e3af6f0 fix ctypes test alignment assumptions (closes #20946) by Benjamin Peterson · 11 years ago
- 6d07641 #13530: port to 2.7 branch (document what os.lseek returns). by Georg Brandl · 11 years ago
- e50fe4c Issue #20283: RE pattern methods now accept the string keyword parameters by Serhiy Storchaka · 11 years ago
- 384e9cb finish backing out #19081 by Benjamin Peterson · 11 years ago
- e9aab0f backout #19081 to fix #20621 by Benjamin Peterson · 11 years ago
- 1d19f97 Issue #17671: Fixed a crash when use non-initialized io.BufferedRWPair. by Serhiy Storchaka · 11 years ago
- 2748c5c avoid name clash with posix_close (closes #20594) by Benjamin Peterson · 11 years ago
- 98a9722 Issue #20437: Fixed 43 potential bugs when deleting objects references. by Serhiy Storchaka · 11 years ago
- ddc697f Issue #20374: delete spurious empty line by Ned Deily · 11 years ago
- b0fd12d Issue #20374: Avoid compiler warnings when compiling readline with libedit. by Ned Deily · 11 years ago
- ccffb25 Issue #20368: The null character now correctly passed from Tcl to Python (in by Serhiy Storchaka · 11 years ago
- aaef0e7 Remove inaccurate comment and a the related recently added by Gregory P. Smith · 11 years ago
- 027ab39 Issue #19081: Remove the zipimporter.files reference as the zip TOC by Gregory P. Smith · 11 years ago
- 0ac0ead new plan: just remove typecasts (closes #20374) by Benjamin Peterson · 11 years ago
- ce75105 use new readline function types (closes #20374) by Benjamin Peterson · 11 years ago
- e0ed2d7 Issue #19936: Added executable bits or shebang lines to Python scripts which by Serhiy Storchaka · 11 years ago
- 9e79889 remove overly strict assertion (closes #20251) by Benjamin Peterson · 11 years ago
- 06e486c correct defaultdict signature in docstring (closes #20250) by Benjamin Peterson · 11 years ago
- 28cf368 complain when nbytes > buflen to fix possible buffer overflow (closes #20246) by Benjamin Peterson · 11 years ago
- 3b2afbb Issue #20207: Always disable SSLv2 except when PROTOCOL_SSLv2 is explicitly asked for. by Antoine Pitrou · 11 years ago
- 7251fe1 fix zipimport ref leak by Benjamin Peterson · 11 years ago