| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | deque is not varsized, so using Py_SIZE is nonsensical (closes #24162) | Benjamin Peterson | 2015-05-15 | 1 | -1/+1 |
| | | |||||
| * | ensure .keywords is always a dict | Benjamin Peterson | 2015-05-09 | 1 | -9/+5 |
| | | |||||
| * | fix libffi compilation on FreeBSD (#23042) | Benjamin Peterson | 2015-05-09 | 1 | -18/+30 |
| | | | | | Patch from Marc-Andre Lemburg. | ||||
| * | Issue #20274: When calling a _sqlite.Connection, it now complains if passed | Larry Hastings | 2015-05-08 | 1 | -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 Hettinger | 2015-05-02 | 1 | -7/+7 |
| | | | | | state. | ||||
| * | Issues #24099, #24100, and #24101: Fix free-after-use bug in heapq. | Raymond Hettinger | 2015-05-02 | 1 | -50/+21 |
| | | |||||
| * | remove extern definition, since it's in a header file (closes #24058) | Benjamin Peterson | 2015-04-26 | 1 | -2/+0 |
| | | |||||
| * | Issue #16840. Turn off bignum support in tkinter with with Tcl earlier than ↵ | Serhiy Storchaka | 2015-04-21 | 2 | -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 Storchaka | 2015-04-20 | 1 | -1/+1 |
| | | |||||
| * | Issue #23842: os.major(), os.minor() and os.makedev() now support ints again. | Serhiy Storchaka | 2015-04-20 | 1 | -3/+28 |
| | | |||||
| * | - Use PLATDIR for the platform directory everywhere (refactoring only) | doko@ubuntu.com | 2015-04-13 | 1 | -1/+1 |
| | | |||||
| * | Issue #21859: Corrected FileIO docstrings. | Serhiy Storchaka | 2015-04-10 | 1 | -14/+17 |
| | | |||||
| * | remove extra arguments in arg parsing format codes (closes #23875) | Benjamin Peterson | 2015-04-06 | 1 | -2/+2 |
| | | |||||
| * | Issue #15133: _tkinter.tkapp.getboolean() now supports long and Tcl_Obj and | Serhiy Storchaka | 2015-04-04 | 1 | -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 Storchaka | 2015-04-04 | 1 | -2/+2 |
| | | | | | Patch by Makoto Kato. | ||||
| * | Issue #16840: Tkinter now supports 64-bit integers added in Tcl 8.4 and | Serhiy Storchaka | 2015-04-02 | 1 | -13/+222 |
| | | | | | arbitrary precision integers added in Tcl 8.5. | ||||
| * | Issue #23834: Fix socket.sendto(), use the C long type to store the result of | Victor Stinner | 2015-04-02 | 1 | -1/+2 |
| | | | | | sendto() instead of the C int type. | ||||
| * | Issue #21526: Tkinter now supports new boolean type in Tcl 8.5. | Serhiy Storchaka | 2015-04-02 | 1 | -15/+34 |
| | | |||||
| * | remove assignment in conditional | Benjamin Peterson | 2015-04-01 | 1 | -1/+2 |
| | | |||||
| * | Issue #23785: Fixed memory leak in TextIOWrapper.tell() in rare circumstances. | Serhiy Storchaka | 2015-03-30 | 1 | -5/+2 |
| | | |||||
| * | Issue #23781: Add private helper function _PyErr_ReplaceException() that | Serhiy Storchaka | 2015-03-30 | 3 | -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 closing | Serhiy Storchaka | 2015-03-24 | 1 | -4/+17 |
| | | | | | writer failed in BufferedRWPair.close(). | ||||
| * | expose X509_V_FLAG_TRUSTED_FIRST | Benjamin Peterson | 2015-03-05 | 1 | -0/+4 |
| | | |||||
| * | enable X509_V_FLAG_TRUSTED_FIRST when possible (closes #23476) | Benjamin Peterson | 2015-03-05 | 1 | -0/+9 |
| | | |||||
| * | Issue #23576: Avoid stalling in SSL reads when EOF has been reached in the ↵ | Antoine Pitrou | 2015-03-04 | 1 | -20/+0 |
| | | | | | SSL layer but the underlying connection hasn't been closed. | ||||
| * | fix possible overflow bugs in unicodedata (closes #23367) | Benjamin Peterson | 2015-03-02 | 1 | -1/+8 |
| | | |||||
| * | Issue #22113: struct.pack_into() now supports new buffer protocol (in | Serhiy Storchaka | 2015-02-21 | 1 | -10/+12 |
| | | | | | particular accepts writable memoryview). | ||||
| * | Issue #23215: Multibyte codecs with custom error handlers that ignores errors | Serhiy Storchaka | 2015-02-20 | 1 | -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 Storchaka | 2015-02-20 | 1 | -7/+7 |
| | | | | | flush() was not called in close() if closefd=False. | ||||
| * | Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integer | Serhiy Storchaka | 2015-02-16 | 4 | -12/+20 |
| | | | | | overflows. Added few missed PyErr_NoMemory(). | ||||
| * | Issue #23392: Added tests for marshal C API that works with FILE*. | Serhiy Storchaka | 2015-02-06 | 1 | -0/+166 |
| | | |||||
| * | Issues #23363, #23364, #23365, #23366: Fixed itertools overflow tests. | Serhiy Storchaka | 2015-02-02 | 1 | -20/+6 |
| | | | | | Used PyMem_New to check overflow. | ||||
| * | check for overflows in permutations() and product() (closes #23363, closes ↵ | Benjamin Peterson | 2015-02-02 | 1 | -2/+16 |
| | | | | | #23364) | ||||
| * | check for overflow in combinations_with_replacement (closes #23365) | Benjamin Peterson | 2015-02-02 | 1 | -0/+4 |
| | | |||||
| * | detect overflow in combinations (closes #23366) | Benjamin Peterson | 2015-02-02 | 1 | -0/+4 |
| | | |||||
| * | Issue #23370: Fix off-by-one error for non-contiguous buffers. | Stefan Krah | 2015-02-01 | 1 | -0/+53 |
| | | |||||
| * | Issue #23349: Fix off-by-one error in PyBuffer_ToContiguous(). Initial patch | Stefan Krah | 2015-01-30 | 1 | -0/+48 |
| | | | | | by Richard Hansen. | ||||
| * | ifdef our way to compatibility with old openssl (closes #23335) | Benjamin Peterson | 2015-01-28 | 1 | -1/+1 |
| | | |||||
| * | disable ALPN on LibreSSL, which has a large version number, but not ALPN ↵ | Benjamin Peterson | 2015-01-27 | 1 | -1/+1 |
| | | | | | support (closes #23329) | ||||
| * | prefer server alpn ordering over the client's | Benjamin Peterson | 2015-01-23 | 1 | -13/+20 |
| | | |||||
| * | pep 466 backport of alpn (#20188) | Benjamin Peterson | 2015-01-23 | 1 | -22/+110 |
| | | |||||
| * | Issue #23248: Update ssl error codes from latest OpenSSL git master. | Antoine Pitrou | 2015-01-18 | 1 | -1/+296 |
| | | |||||
| * | Issue #23181: More "codepoint" -> "code point". | Serhiy Storchaka | 2015-01-18 | 4 | -5/+5 |
| | | |||||
| * | Issue #23098: 64-bit dev_t is now supported in the os module. | Serhiy Storchaka | 2015-01-18 | 1 | -12/+42 |
| | | |||||
| * | fix instances of consecutive articles (closes #23221) | Benjamin Peterson | 2015-01-13 | 1 | -1/+1 |
| | | | | | Patch by Karan Goel. | ||||
| * | Issue #21902: Replace incorrect 'hyperbolic arc sine' (etc.) with 'inverse ↵ | Mark Dickinson | 2015-01-11 | 2 | -6/+6 |
| | | | | | hyperbolic sine' (etc.). Remove meaningless reference to radians. | ||||
| * | Issue #21356: Make ssl.RAND_egd() optional to support LibreSSL. The | Victor Stinner | 2015-01-06 | 1 | -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 Peterson | 2014-12-22 | 2 | -38/+39 |
| | | | | | Patch by Martin Panter. | ||||
| * | merge 2.7.9 release branch | Benjamin Peterson | 2014-12-06 | 1 | -0/+4 |
| |\ | |||||
| | * | allow ssl module to compile if openssl doesn't support SSL 3 (closes #22935) | Benjamin Peterson | 2014-12-06 | 1 | -0/+4 |
| | | | | | | | | | Patch by Kurt Roeckx. | ||||
