| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #7117: Backport missing pystrtod.h declarations from py3k. | Mark Dickinson | 2009-10-26 | 1 | -0/+5 |
|
|
* | Finished removing _PyOS_double_to_string, as mentioned in issue 7117. | Eric Smith | 2009-10-26 | 1 | -7/+0 |
|
|
* | Issue #7117: temporarily disable the short float repr while the | Mark Dickinson | 2009-10-24 | 1 | -0/+7 |
|
|
* | Issue #7117 (backport py3k float repr) continued: | Mark Dickinson | 2009-10-24 | 3 | -0/+85 |
|
|
* | Issue #7117: Prepare for backport of py3k float repr. | Mark Dickinson | 2009-10-24 | 2 | -0/+16 |
|
|
* | http://bugs.python.org/issue6836 | Kristján Valur Jónsson | 2009-09-28 | 2 | -3/+10 |
|
|
* | Issue #6713: Improve performance of str(n) and repr(n) for integers n | Mark Dickinson | 2009-09-16 | 1 | -0/+4 |
|
|
* | Fix issue #1590864, multiple threads and fork() can cause deadlocks, by | Thomas Wouters | 2009-09-16 | 1 | -0/+8 |
|
|
* | Issue #6848: Fix curses module build failure on OS X 10.6. | Mark Dickinson | 2009-09-06 | 1 | -1/+6 |
|
|
* | Issue #6347: Add inttypes.h to the pyport.h #includes; fixes a build | Mark Dickinson | 2009-06-30 | 1 | -0/+6 |
|
|
* | Remove unused stdint.h includes | Mark Dickinson | 2009-06-28 | 2 | -8/+0 |
|
|
* | remove some unused symtable constants | Benjamin Peterson | 2009-06-23 | 1 | -7/+3 |
|
|
* | remove tmpname support since it's no longer used | Benjamin Peterson | 2009-06-21 | 1 | -2/+0 |
|
|
* | Add const qualifier to PyErr_SetFromErrnoWithFilename and to | Alexandre Vassalotti | 2009-06-12 | 1 | -2/+3 |
|
|
* | Allow multiple context managers in one with statement, as proposed | Georg Brandl | 2009-05-25 | 1 | -1/+1 |
|
|
* | add a SETUP_WITH opcode | Benjamin Peterson | 2009-05-25 | 1 | -1/+3 |
|
|
* | Issue #6042: | Jeffrey Yasskin | 2009-05-23 | 1 | -9/+6 |
|
|
* | Issue #3527: Removed Py_WIN_WIDE_FILENAMES which is not used any more. | Hirokazu Yamamoto | 2009-05-17 | 1 | -7/+3 |
|
|
* | Issue 5954, PyFrame_GetLineNumber: | Jeffrey Yasskin | 2009-05-08 | 2 | -2/+11 |
|
|
* | PyCode_NewEmpty: | Jeffrey Yasskin | 2009-05-08 | 1 | -0/+5 |
|
|
* | add _PyObject_LookupSpecial to handle fetching special method lookup | Benjamin Peterson | 2009-05-08 | 1 | -0/+1 |
|
|
* | Issue #5920: Changed format.__float__ and complex.__float__ to use a precisio... | Eric Smith | 2009-05-05 | 1 | -0/+6 |
|
|
* | Issue #4426: The UTF-7 decoder was too strict and didn't accept some legal se... | Antoine Pitrou | 2009-05-04 | 1 | -4/+2 |
|
|
* | Issue #1588: Add complex.__format__. | Eric Smith | 2009-04-30 | 1 | -0/+6 |
|
|
* | Issue #5793: rationalize isdigit / isalpha / tolower, etc. Will port to py3k.... | Eric Smith | 2009-04-27 | 3 | -22/+42 |
|
|
* | Issue #5835, deprecate PyOS_ascii_formatd. | Eric Smith | 2009-04-25 | 1 | -1/+11 |
|
|
* | Backport of some of the work in r71665 to trunk. This reworks much of | Eric Smith | 2009-04-22 | 2 | -6/+35 |
|
|
* | Fix for issue5657. | Ronald Oussoren | 2009-04-19 | 1 | -0/+12 |
|
|
* | many more types to initialize (I had to expose some of them) | Benjamin Peterson | 2009-04-18 | 2 | -0/+4 |
|
|
* | Backport r71704 (add configure check for C99 round function) to trunk. | Mark Dickinson | 2009-04-18 | 1 | -0/+4 |
|
|
* | 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 |
|
|