summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* Issue #23641: Cleaned out legacy dunder names from tests and docs.Serhiy Storchaka2015-03-122-2/+2
* 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
* merge 3.3 (#23367)Benjamin Peterson2015-03-021-3/+10
|\
| * fix possible overflow bugs in unicodedata (closes #23367)Benjamin Peterson2015-03-021-3/+10
* | Issue #20204: Added the __module__ attribute to _tkinter classes.Serhiy Storchaka2015-03-011-2/+2
* | Issue #23215: Multibyte codecs with custom error handlers that ignores errorsSerhiy Storchaka2015-02-201-8/+11
* | Issue #5700: io.FileIO() called flush() after closing the file.Serhiy Storchaka2015-02-201-7/+14
* | Shoould be Py_MIN, not Py_MAX.Serhiy Storchaka2015-02-161-1/+1
* | Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integerSerhiy Storchaka2015-02-1612-30/+40
* | Issue #13637: Improve exception message of a2b_* functions.Berker Peksag2015-02-141-2/+2
* | Issue #23433: Fix faulthandler._stack_overflow()Victor Stinner2015-02-111-4/+5
* | merge 3.3 (#23361)Benjamin Peterson2015-02-101-2/+12
|\ \ | |/
| * add overflow checking (closes #23361)Benjamin Peterson2015-02-101-2/+12
* | Issue #23392: Added tests for marshal C API that works with FILE*.Serhiy Storchaka2015-02-061-0/+166
* | Issue #23099: Closing io.BytesIO with exported buffer is rejected now toSerhiy Storchaka2015-02-031-0/+1
* | Issues #23363, #23364, #23365, #23366: Fixed itertools overflow tests.Serhiy Storchaka2015-02-021-20/+6
|\ \ | |/
| * Issues #23363, #23364, #23365, #23366: Fixed itertools overflow tests.Serhiy Storchaka2015-02-021-20/+6
* | Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer()Serhiy Storchaka2015-02-026-59/+79
* | merge 3.3 (#23364, #23363)Benjamin Peterson2015-02-021-2/+16
|\ \ | |/
| * check for overflows in permutations() and product() (closes #23363, closes #2...Benjamin Peterson2015-02-021-2/+16
* | merge 3.3 (#23365)Benjamin Peterson2015-02-021-0/+4
|\ \ | |/
| * check for overflow in combinations_with_replacement (closes #23365)Benjamin Peterson2015-02-021-0/+4
* | merge 3.3 (#23366)Benjamin Peterson2015-02-021-0/+4
|\ \ | |/
| * detect overflow in combinations (closes #23366)Benjamin Peterson2015-02-021-0/+4
* | merge 3.3 (#23369)Benjamin Peterson2015-02-011-4/+11
|\ \ | |/
| * fix possible overflow in encode_basestring_ascii (closes #23369)Benjamin Peterson2015-02-011-4/+11
* | Issue #23370: Fix off-by-one error for non-contiguous buffers.Stefan Krah2015-02-011-0/+51
* | Always #define _PyLong_FromDev as we always need it to compile rather thanGregory P. Smith2015-01-291-8/+8
* | asyncio, _overlapped.ConnectPipe(): release the GILVictor Stinner2015-01-261-0/+3
* | asyncio, Tulip issue 204: Fix IocpProactor.recv()Victor Stinner2015-01-261-2/+2
* | asyncio, Tulip issue 204: Fix IocpProactor.accept_pipe()Victor Stinner2015-01-221-2/+2
* | Issue #23293, asyncio: Rewrite IocpProactor.connect_pipe()Victor Stinner2015-01-221-93/+22
* | Issue #23095, asyncio: Rewrite _WaitHandleFuture.cancel()Victor Stinner2015-01-211-0/+25
* | Issue #23280: Fix docstrings for binascii.(un)hexlifyZachary Ware2015-01-202-5/+100
* | 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-185-12/+12
* | Issue #23098: 64-bit dev_t is now supported in the os module.Serhiy Storchaka2015-01-181-12/+32
* | 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 19548: update codecs module documentationNick Coghlan2015-01-061-3/+3
* | Issue #21356: Make ssl.RAND_egd() optional to support LibreSSL. TheVictor Stinner2015-01-061-0/+4
* | allow more operations to work on detached streams (closes #23093)Benjamin Peterson2014-12-222-39/+41
* | Issue #15513: Added a __sizeof__ implementation for pickle classes.Serhiy Storchaka2014-12-162-2/+112
* | allow ssl module to compile if openssl doesn't support SSL 3 (closes #22935)Benjamin Peterson2014-12-061-0/+4
* | Issue #22581: Use more "bytes-like object" throughout the docs and comments.Serhiy Storchaka2014-12-052-5/+5
* | Removed duplicated words in in comments and docs.Serhiy Storchaka2014-12-012-2/+2
* | don't require OpenSSL SNI to pass hostname to ssl functions (#22921)Benjamin Peterson2014-11-231-6/+0
* | fix possible double free in TextIOWrapper.__init__ (closes #22849)Benjamin Peterson2014-11-121-1/+1