summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Collapse)AuthorAgeFilesLines
...
* remove assignment in conditionalBenjamin Peterson2015-04-011-1/+2
|
* Issue #23785: Fixed memory leak in TextIOWrapper.tell() in rare circumstances.Serhiy Storchaka2015-03-301-5/+2
|
* Issue #23781: Add private helper function _PyErr_ReplaceException() thatSerhiy Storchaka2015-03-303-26/+6
| | | | | corresponds _PyErr_ChainExceptions() in Python 3 to help porting patches from Python 3.
* Issue #21802: The reader in BufferedRWPair now is closed even when closingSerhiy Storchaka2015-03-241-4/+17
| | | | writer failed in BufferedRWPair.close().
* expose X509_V_FLAG_TRUSTED_FIRSTBenjamin Peterson2015-03-051-0/+4
|
* enable X509_V_FLAG_TRUSTED_FIRST when possible (closes #23476)Benjamin Peterson2015-03-051-0/+9
|
* Issue #23576: Avoid stalling in SSL reads when EOF has been reached in the ↵Antoine Pitrou2015-03-041-20/+0
| | | | SSL layer but the underlying connection hasn't been closed.
* fix possible overflow bugs in unicodedata (closes #23367)Benjamin Peterson2015-03-021-1/+8
|
* Issue #22113: struct.pack_into() now supports new buffer protocol (inSerhiy Storchaka2015-02-211-10/+12
| | | | particular accepts writable memoryview).
* Issue #23215: Multibyte codecs with custom error handlers that ignores errorsSerhiy Storchaka2015-02-201-11/+14
| | | | | consumed too much memory and raised SystemError or MemoryError. Original patch by Aleksi Torhamo.
* Issue #5700: io.FileIO() called flush() after closing the file.Serhiy Storchaka2015-02-201-7/+7
| | | | flush() was not called in close() if closefd=False.
* Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integerSerhiy Storchaka2015-02-164-12/+20
| | | | overflows. Added few missed PyErr_NoMemory().
* Issue #23392: Added tests for marshal C API that works with FILE*.Serhiy Storchaka2015-02-061-0/+166
|
* Issues #23363, #23364, #23365, #23366: Fixed itertools overflow tests.Serhiy Storchaka2015-02-021-20/+6
| | | | Used PyMem_New to check overflow.
* check for overflows in permutations() and product() (closes #23363, closes ↵Benjamin Peterson2015-02-021-2/+16
| | | | #23364)
* check for overflow in combinations_with_replacement (closes #23365)Benjamin Peterson2015-02-021-0/+4
|
* detect overflow in combinations (closes #23366)Benjamin Peterson2015-02-021-0/+4
|
* Issue #23370: Fix off-by-one error for non-contiguous buffers.Stefan Krah2015-02-011-0/+53
|
* Issue #23349: Fix off-by-one error in PyBuffer_ToContiguous(). Initial patchStefan Krah2015-01-301-0/+48
| | | | by Richard Hansen.
* ifdef our way to compatibility with old openssl (closes #23335)Benjamin Peterson2015-01-281-1/+1
|
* disable ALPN on LibreSSL, which has a large version number, but not ALPN ↵Benjamin Peterson2015-01-271-1/+1
| | | | support (closes #23329)
* prefer server alpn ordering over the client'sBenjamin Peterson2015-01-231-13/+20
|
* pep 466 backport of alpn (#20188)Benjamin Peterson2015-01-231-22/+110
|
* Issue #23248: Update ssl error codes from latest OpenSSL git master.Antoine Pitrou2015-01-181-1/+296
|
* Issue #23181: More "codepoint" -> "code point".Serhiy Storchaka2015-01-184-5/+5
|
* Issue #23098: 64-bit dev_t is now supported in the os module.Serhiy Storchaka2015-01-181-12/+42
|
* fix instances of consecutive articles (closes #23221)Benjamin Peterson2015-01-131-1/+1
| | | | Patch by Karan Goel.
* Issue #21902: Replace incorrect 'hyperbolic arc sine' (etc.) with 'inverse ↵Mark Dickinson2015-01-112-6/+6
| | | | hyperbolic sine' (etc.). Remove meaningless reference to radians.
* Issue #21356: Make ssl.RAND_egd() optional to support LibreSSL. TheVictor Stinner2015-01-061-3/+10
| | | | | availability of the function is checked during the compilation. Patch written by Bernard Spil.
* allow more operations to work on detached streams (closes #23093)Benjamin Peterson2014-12-222-38/+39
| | | | Patch by Martin Panter.
* merge 2.7.9 release branchBenjamin Peterson2014-12-061-0/+4
|\
| * allow ssl module to compile if openssl doesn't support SSL 3 (closes #22935)Benjamin Peterson2014-12-061-0/+4
| | | | | | | | Patch by Kurt Roeckx.
* | Removed duplicated words in in comments and docs.Serhiy Storchaka2014-12-011-1/+1
|/
* allow hostname to be passed to SSLContext even if OpenSSL doesn't support ↵Benjamin Peterson2014-11-241-6/+0
| | | | | | SNI (closes #22921) Patch from Donald Stufft.
* Issue #22821: Fixed fcntl() with integer argument on 64-bit big-endianSerhiy Storchaka2014-11-101-2/+2
| | | | platforms.
* fix test where sizeof(long) != sizeof(int)Benjamin Peterson2014-11-061-4/+4
|
* Issue #20160: broken ctypes calling convention on MSVC / 64-bit Windows ↵Steve Dower2014-11-065-15/+83
| | | | (large structs). Patch by mattip
* Issue #22773: fix failing test with old readline versions due to issue #19884.Antoine Pitrou2014-11-041-0/+3
|
* allow keyfile argument to be None (closes #22787)Benjamin Peterson2014-11-041-7/+23
|
* #13096: Fix segfault in CTypes POINTER handling of large values.R David Murray2014-10-121-2/+7
| | | | Patch by Meador Inge.
* make _socket.socket weakrefable (closes #22569)Benjamin Peterson2014-10-062-1/+5
| | | | Patch from Alex Gaynor.
* Closes #19342: improve docstrings in grp module.Georg Brandl2014-10-021-6/+6
|
* fix sslwrap_simple (closes #22523)Benjamin Peterson2014-10-021-6/+12
| | | | Thanks Alex Gaynor.
* allow longs as indexes to group() (closes #22530)Benjamin Peterson2014-10-011-1/+1
|
* clear BufferedRWPair weakrefs on deallocation (closes #22517)Benjamin Peterson2014-09-301-0/+2
|
* Issue #21860: Correct docstrings of FileIO.seek() and FileIO.truncate() methods.Berker Peksag2014-09-241-3/+5
| | | | Patch by Terry Chia.
* Issue #21147: sqlite3 now raises an exception if the request contains a nullSerhiy Storchaka2014-09-112-3/+7
| | | | character instead of truncate it. Based on patch by Victor Stinner.
* Issue #21951: Fixed a crash in Tkinter on AIX when called Tcl command withSerhiy Storchaka2014-09-111-0/+4
| | | | | | | empty string or tuple argument. On some platforms Tcl memory allocator returns NULL when allocating zero-sized block of memory.
* Issue #21951: Use attemptckalloc() instead of ckalloc() in Tkinter.Serhiy Storchaka2014-09-111-12/+28
| | | | | ckalloc() causes the Tcl interpreter to panic, attemptckalloc() returns NULL if the memory allocation fails.
* - Issue #22381: Update zlib to 1.2.8.doko@ubuntu.com2014-09-1143-3181/+7793
|