| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #1113244: Py_XINCREF, Py_DECREF, Py_XDECREF: Add `do { ... } while (0)' | Matthias Klose | 2009-04-05 | 1 | -2/+2 |
|
|
* | - Py_DECREF: Add `do { ... } while (0)' to avoid compiler warnings. | Matthias Klose | 2009-04-05 | 1 | -5/+7 |
|
|
* | revert r71159 since it broke the build | Benjamin Peterson | 2009-04-04 | 1 | -7/+5 |
|
|
* | - Py_DECREF: Add `do { ... } while (0)' to avoid compiler warnings. | Matthias Klose | 2009-04-04 | 1 | -5/+7 |
|
|
* | Issue #2396: backport the memoryview object. | Antoine Pitrou | 2009-04-02 | 3 | -14/+90 |
|
|
* | Fix two issues introduced by issue #71031 by changing the signature of | Brett Cannon | 2009-04-02 | 1 | -1/+1 |
|
|
* | Issue #4688: Add a heuristic so that tuples and dicts containing only | Antoine Pitrou | 2009-03-23 | 3 | -0/+13 |
|
|
* | Rewrite Py_ARITHMETIC_RIGHT_SHIFT so that it's valid for all signed | Mark Dickinson | 2009-03-20 | 1 | -7/+11 |
|
|
* | Issue #4258: Use 30-bit digits for Python longs, on 64-bit platforms. | Mark Dickinson | 2009-03-20 | 4 | -18/+106 |
|
|
* | Backport r69961 to trunk, replacing JUMP_IF_{TRUE,FALSE} with | Jeffrey Yasskin | 2009-02-28 | 1 | -3/+6 |
|
|
* | remove some PyBytes_* aliases that are not in 3.x | Benjamin Peterson | 2009-02-16 | 1 | -6/+0 |
|
|
* | A few more minor fixes in longobject.c | Mark Dickinson | 2009-02-15 | 1 | -0/+1 |
|
|
* | Issue #5260: Various portability and standards compliance fixes, optimizations | Mark Dickinson | 2009-02-15 | 1 | -2/+1 |
|
|
* | Issue #5204: Define _PyVerify_fd on VC6 to make | Hirokazu Yamamoto | 2009-02-11 | 1 | -0/+3 |
|
|
* | Issue 4804. Add a function to test the validity of file descriptors on Windo... | Kristján Valur Jónsson | 2009-02-10 | 1 | -0/+11 |
|
|
* | Issue #4575: fix Py_IS_INFINITY macro to work correctly on x87 FPUs. | Mark Dickinson | 2009-02-09 | 1 | -5/+24 |
|
|
* | Issue 1242657: list(obj) can swallow KeyboardInterrupt. | Raymond Hettinger | 2009-02-02 | 1 | -1/+1 |
|
|
* | #3720: Interpreter crashes when an evil iterator removes its own next function. | Amaury Forgeot d'Arc | 2009-01-12 | 2 | -1/+3 |
|
|
* | Fix issue 4884, preventing a crash in the socket code when python is compiled | Jeffrey Yasskin | 2009-01-09 | 1 | -0/+9 |
|
|
* | Fix #4846 (Py_UNICODE_ISSPACE causes linker error) by moving the declaration | Marc-André Lemburg | 2009-01-05 | 1 | -10/+28 |
|
|
* | Use C99 'isfinite' macro in preference to BSD-derived 'finite' function. | Mark Dickinson | 2009-01-04 | 1 | -1/+3 |
|
|
* | Fix HAVE_DECL_ISINF/ISNAN test (again). | Mark Dickinson | 2009-01-04 | 1 | -2/+2 |
|
|
* | Oops. Need to check not only that HAVE_DECL_ISINF is defined, but also | Mark Dickinson | 2009-01-04 | 1 | -2/+2 |
|
|
* | isinf and isnan are macros, not functions; fix configure script | Mark Dickinson | 2009-01-04 | 1 | -2/+2 |
|
|
* | fix WORD_BIGEDIAN declaration in Universal builds; fixes #4060 and #4728 | Benjamin Peterson | 2008-12-28 | 1 | -0/+14 |
|
|
* | Sort UCS-2/UCS-4 name mangling list. | Alexandre Vassalotti | 2008-12-28 | 1 | -8/+8 |
|
|
* | Fix name mangling of PyUnicode_ClearFreeList. | Alexandre Vassalotti | 2008-12-28 | 1 | -1/+1 |
|
|
* | Issue #2183: Simplify and optimize bytecode for list comprehensions. | Antoine Pitrou | 2008-12-17 | 1 | -1/+1 |
|
|
* | move unprefixed error into .c file | Benjamin Peterson | 2008-10-30 | 1 | -2/+0 |
|
|
* | #4122: On Windows, Py_UNICODE_ISSPACE cannot be used in an extension module: | Amaury Forgeot d'Arc | 2008-10-14 | 1 | -1/+1 |
|
|
* | Bump to 2.7a0 | Barry Warsaw | 2008-10-02 | 1 | -3/+3 |
|
|
* | Bumping to 2.6 final. | Barry Warsaw | 2008-10-01 | 1 | -3/+3 |
|
|
* | build_os2emx.patch in issue 3868 - update OS/2 EMX makefile and config files | Andrew MacIntyre | 2008-09-22 | 1 | -1/+1 |
|
|
* | done with 2.6rc2 | Barry Warsaw | 2008-09-18 | 1 | -1/+1 |
|
|
* | Bumping to 2.6rc2v2.6rc2 | Barry Warsaw | 2008-09-18 | 1 | -2/+2 |
|
|
* | post release updates | Barry Warsaw | 2008-09-13 | 1 | -1/+1 |
|
|
* | Fix the release levelv2.6rc1 | Barry Warsaw | 2008-09-12 | 1 | -2/+2 |
|
|
* | Bumping to 2.6rc1 | Barry Warsaw | 2008-09-12 | 1 | -3/+3 |
|
|
* | #3668: When PyArg_ParseTuple correctly parses a s* format, but raises an | Antoine Pitrou | 2008-08-29 | 1 | -0/+9 |
|
|
* | Issue #2534: speed up isinstance() and issubclass() by 50-70%, so as to | Antoine Pitrou | 2008-08-26 | 1 | -0/+5 |
|
|
* | sort of backport 66038 by aliasing PyObject_Bytes to PyObject_Str | Benjamin Peterson | 2008-08-26 | 1 | -0/+1 |
|
|
* | done with the release | Barry Warsaw | 2008-08-21 | 1 | -1/+1 |
|
|
* | Bump to 2.6b3.v2.6b3 | Barry Warsaw | 2008-08-21 | 1 | -2/+2 |
|
|
* | Hopeful fix for issue 1878: remove Py_TPFLAGS_HAVE_VERSION_TAG from | Guido van Rossum | 2008-08-19 | 1 | -6/+19 |
|
|
* | fix a little typo | Benjamin Peterson | 2008-08-19 | 1 | -1/+1 |
|
|
* | fix compile errors | Benjamin Peterson | 2008-08-17 | 1 | -1/+1 |
|
|
* | expose PySTEntry.nested so the symtable module will work | Benjamin Peterson | 2008-08-17 | 1 | -1/+1 |
|
|
* | Issue #3139: Make buffer-interface thread-safe wrt. PyArg_ParseTuple, | Martin v. Löwis | 2008-08-12 | 2 | -20/+8 |
|
|
* | Issue #2620: Overflow checking when allocating or reallocating memory | Gregory P. Smith | 2008-07-22 | 1 | -11/+22 |
|
|
* | Post release cleanup | Barry Warsaw | 2008-07-18 | 1 | -1/+1 |
|
|