| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Issue #24684: socket.socket.getaddrinfo() now calls | Victor Stinner | 2015-09-11 | 1 | -1/+1 |
|
|
* | Issue #25030: Do not document seek() as if it accepts keyword arguments | Martin Panter | 2015-09-11 | 1 | -1/+1 |
|
|
* | Don't left shift negative values. Use an unsigned value instead to avoid | Gregory P. Smith | 2015-08-04 | 1 | -1/+1 |
|
|
* | include fcntl.h on all *nix platforms (closes #24217) | Benjamin Peterson | 2015-08-02 | 1 | -2/+2 |
|
|
* | Issue #23652: Make the select module compile against LSB headers. | Zachary Ware | 2015-08-02 | 1 | -0/+10 |
|
|
* | Issue #23319: Fix ctypes.BigEndianStructure, swap correctly bytes. Patch | Victor Stinner | 2015-07-29 | 1 | -0/+1 |
|
|
* | Issue #24683: Fixed a crash in _json.make_encoder() called with non-dict 1st ... | Serhiy Storchaka | 2015-07-26 | 1 | -0/+7 |
|
|
* | Issue #24613: Calling array.fromstring() with self is no longer allowed | Serhiy Storchaka | 2015-07-26 | 1 | -0/+5 |
|
|
* | possible memory leak in error case (closes #24719) | Benjamin Peterson | 2015-07-25 | 1 | -1/+1 |
|
|
* | proper overflow checks for mymemreplace (closes #24708) | Benjamin Peterson | 2015-07-25 | 1 | -2/+9 |
|
|
* | Issue #24704: Fixed possible NULL pointer dereferencing in the _json module | Serhiy Storchaka | 2015-07-24 | 1 | -0/+2 |
|
|
* | Issue #24620: Random.setstate() now validates the value of state last element. | Serhiy Storchaka | 2015-07-24 | 1 | -0/+4 |
|
|
* | Issue #24703: Fixed resource leak on error in bsddb.verify(). | Serhiy Storchaka | 2015-07-24 | 1 | -2/+4 |
|
|
* | Initialize buf.outobj in multibyte encoder (closes issue #24702). | Serhiy Storchaka | 2015-07-24 | 1 | -0/+1 |
|
|
* | Issue #19663: Improve error message for defaultdict. | Raymond Hettinger | 2015-07-20 | 1 | -1/+1 |
|
|
* | improve style of the convert macro (#24655) | Benjamin Peterson | 2015-07-18 | 1 | -7/+7 |
|
|
* | Issue #24611: Fixed compiling the posix module on non-Windows platforms | Serhiy Storchaka | 2015-07-12 | 1 | -2/+2 |
|
|
* | Issue #18684: Fixed reading out of the buffer in the re module. | Serhiy Storchaka | 2015-07-06 | 1 | -14/+41 |
|
|
* | Issue #24456: Fixed possible buffer over-read in adpcm2lin() and lin2adpcm() | Serhiy Storchaka | 2015-06-28 | 1 | -8/+30 |
|
|
* | ensure internal buffer is large enough for string after flushing (closes #24481) | Benjamin Peterson | 2015-06-27 | 1 | -0/+4 |
|
|
* | Issue #24489: ensure a previously set C errno doesn't disturb cmath.polar(). | Antoine Pitrou | 2015-06-23 | 2 | -1/+14 |
|
|
* | Fixed indentation of Python examples in C comments. | Serhiy Storchaka | 2015-06-10 | 1 | -11/+11 |
|
|
* | Issue #19543: Emit deprecation warning for known non-text encodings. | Serhiy Storchaka | 2015-05-31 | 1 | -12/+22 |
|
|
* | Fixed the array module in unicode disabled build (regression of issue20014). | Serhiy Storchaka | 2015-05-31 | 1 | -0/+2 |
|
|
* | Issue #24264: Fixed buffer overflow in the imageop module. | Serhiy Storchaka | 2015-05-31 | 1 | -2/+5 |
|
|
* | Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(), | Serhiy Storchaka | 2015-05-30 | 2 | -15/+38 |
|
|
* | Issue #24326: Fixed audioop.ratecv() with non-default weightB argument. | Serhiy Storchaka | 2015-05-29 | 1 | -1/+1 |
|
|
* | Issue #24257: Fixed segmentation fault in sqlite3.Row constructor with faked | Serhiy Storchaka | 2015-05-22 | 1 | -1/+1 |
|
|
* | Issue #24091: Fixed various crashes in corner cases in cElementTree. | Serhiy Storchaka | 2015-05-18 | 1 | -20/+45 |
|
|
* | Issue #20014: array.array() now accepts unicode typecodes. Based on patch by | Serhiy Storchaka | 2015-05-16 | 1 | -3/+15 |
|
|
* | merge 2.7.10 release branch | Benjamin Peterson | 2015-05-15 | 1 | -1/+1 |
|\ |
|
| * | deque is not varsized, so using Py_SIZE is nonsensical (closes #24162) | Benjamin Peterson | 2015-05-15 | 1 | -1/+1 |
|
|
* | | Defend against a mutation during comparison | Raymond Hettinger | 2015-05-12 | 1 | -0/+5 |
|/ |
|
* | 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 |
|
|
* | Issue #20274: When calling a _sqlite.Connection, it now complains if passed | Larry Hastings | 2015-05-08 | 1 | -3/+6 |
|
|
* | Defer deleted item decref until after the deque is restored to a consistent s... | Raymond Hettinger | 2015-05-02 | 1 | -7/+7 |
|
|
* | 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 8... | Serhiy Storchaka | 2015-04-21 | 2 | -10/+19 |
|
|
* | 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 |
|
|
* | Issue #23338: Fixed formatting ctypes error messages on Cygwin. | Serhiy Storchaka | 2015-04-04 | 1 | -2/+2 |
|
|
* | Issue #16840: Tkinter now supports 64-bit integers added in Tcl 8.4 and | Serhiy Storchaka | 2015-04-02 | 1 | -13/+222 |
|
|
* | Issue #23834: Fix socket.sendto(), use the C long type to store the result of | Victor Stinner | 2015-04-02 | 1 | -1/+2 |
|
|
* | Issue #21526: Tkinter now supports new boolean type in Tcl 8.5. | Serhiy Storchaka | 2015-04-02 | 1 | -15/+34 |
|
|