summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Collapse)AuthorAgeFilesLines
* deque is not varsized, so using Py_SIZE is nonsensical (closes #24162)Benjamin Peterson2015-05-151-1/+1
|
* ensure .keywords is always a dictBenjamin Peterson2015-05-091-9/+5
|
* fix libffi compilation on FreeBSD (#23042)Benjamin Peterson2015-05-091-18/+30
| | | | Patch from Marc-Andre Lemburg.
* Issue #20274: When calling a _sqlite.Connection, it now complains if passedLarry Hastings2015-05-081-3/+6
| | | | | | any keyword arguments. Previously it silently ignored them. Also: Remove ignored and erroneous "kwargs" parameters from three METH_VARARGS methods on _sqlite.Connection.
* Defer deleted item decref until after the deque is restored to a consistent ↵Raymond Hettinger2015-05-021-7/+7
| | | | state.
* Issues #24099, #24100, and #24101: Fix free-after-use bug in heapq.Raymond Hettinger2015-05-021-50/+21
|
* remove extern definition, since it's in a header file (closes #24058)Benjamin Peterson2015-04-261-2/+0
|
* Issue #16840. Turn off bignum support in tkinter with with Tcl earlier than ↵Serhiy Storchaka2015-04-212-10/+19
| | | | | | 8.5.8 (tclTomMath.h was broken) and non-final Tcl 8.6.
* Issue #16840: Turn on support of bignums only in final release of Tcl 8.5.Serhiy Storchaka2015-04-201-1/+1
|
* Issue #23842: os.major(), os.minor() and os.makedev() now support ints again.Serhiy Storchaka2015-04-201-3/+28
|
* - Use PLATDIR for the platform directory everywhere (refactoring only)doko@ubuntu.com2015-04-131-1/+1
|
* Issue #21859: Corrected FileIO docstrings.Serhiy Storchaka2015-04-101-14/+17
|
* remove extra arguments in arg parsing format codes (closes #23875)Benjamin Peterson2015-04-061-2/+2
|
* Issue #15133: _tkinter.tkapp.getboolean() now supports long and Tcl_Obj andSerhiy Storchaka2015-04-041-9/+16
| | | | | | always returns bool. tkinter.BooleanVar now validates input values (accepted bool, int, long, str, unicode, and Tcl_Obj). tkinter.BooleanVar.get() now always returns bool.
* Issue #23338: Fixed formatting ctypes error messages on Cygwin.Serhiy Storchaka2015-04-041-2/+2
| | | | Patch by Makoto Kato.
* Issue #16840: Tkinter now supports 64-bit integers added in Tcl 8.4 andSerhiy Storchaka2015-04-021-13/+222
| | | | arbitrary precision integers added in Tcl 8.5.
* Issue #23834: Fix socket.sendto(), use the C long type to store the result ofVictor Stinner2015-04-021-1/+2
| | | | sendto() instead of the C int type.
* Issue #21526: Tkinter now supports new boolean type in Tcl 8.5.Serhiy Storchaka2015-04-021-15/+34
|
* 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.