summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* 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 SS...Antoine Pitrou2015-03-041-20/+0
* 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
* Issue #23215: Multibyte codecs with custom error handlers that ignores errorsSerhiy Storchaka2015-02-201-11/+14
* Issue #5700: io.FileIO() called flush() after closing the file.Serhiy Storchaka2015-02-201-7/+7
* Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integerSerhiy Storchaka2015-02-164-12/+20
* 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
* check for overflows in permutations() and product() (closes #23363, closes #2...Benjamin Peterson2015-02-021-2/+16
* 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
* 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 supp...Benjamin Peterson2015-01-271-1/+1
* 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
* Issue #21902: Replace incorrect 'hyperbolic arc sine' (etc.) with 'inverse hy...Mark Dickinson2015-01-112-6/+6
* Issue #21356: Make ssl.RAND_egd() optional to support LibreSSL. TheVictor Stinner2015-01-061-3/+10
* allow more operations to work on detached streams (closes #23093)Benjamin Peterson2014-12-222-38/+39
* 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
* | 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 SNI...Benjamin Peterson2014-11-241-6/+0
* Issue #22821: Fixed fcntl() with integer argument on 64-bit big-endianSerhiy Storchaka2014-11-101-2/+2
* fix test where sizeof(long) != sizeof(int)Benjamin Peterson2014-11-061-4/+4
* Issue #20160: broken ctypes calling convention on MSVC / 64-bit Windows (larg...Steve Dower2014-11-065-15/+83
* 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
* make _socket.socket weakrefable (closes #22569)Benjamin Peterson2014-10-062-1/+5
* Closes #19342: improve docstrings in grp module.Georg Brandl2014-10-021-6/+6
* fix sslwrap_simple (closes #22523)Benjamin Peterson2014-10-021-6/+12
* 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
* Issue #21147: sqlite3 now raises an exception if the request contains a nullSerhiy Storchaka2014-09-112-3/+7
* Issue #21951: Fixed a crash in Tkinter on AIX when called Tcl command withSerhiy Storchaka2014-09-111-0/+4
* Issue #21951: Use attemptckalloc() instead of ckalloc() in Tkinter.Serhiy Storchaka2014-09-111-12/+28
* - Issue #22381: Update zlib to 1.2.8.doko@ubuntu.com2014-09-1143-3181/+7793
* Issue #20421: Add a .version() method to SSL sockets exposing the actual prot...Alex Gaynor2014-09-041-0/+13
* PEP 466: backport hashlib algorithm constants (closes #21307)Benjamin Peterson2014-08-281-1/+65
* fix load_verify_locations on unicode paths (closes #22244)Benjamin Peterson2014-08-281-8/+24
* don't segfault when trying to fdopen() a fd for a dir (closes #22259)Benjamin Peterson2014-08-241-1/+1