| Commit message (Expand) | Author | Age | Files | Lines |
* | Remove bogus DECREF of self. | Martin v. Löwis | 2006-05-15 | 1 | -65/+32 |
|
|
* | - Bug #1487966: Fix SystemError with conditional expression in assignment | Neal Norwitz | 2006-05-15 | 1 | -0/+3 |
|
|
* | Change WindowsError to carry the Win32 error code in winerror, | Martin v. Löwis | 2006-05-11 | 1 | -4/+121 |
|
|
* | Micro optimization. In the first case, we know that frame->f_exc_type | Neal Norwitz | 2006-05-09 | 1 | -3/+1 |
|
|
* | Get rid of __context__, per the latest changes to PEP 343 and python-dev | Guido van Rossum | 2006-05-02 | 1 | -10/+3 |
|
|
* | SF #1479181: split open() and file() from being aliases for each other. | Neal Norwitz | 2006-05-02 | 1 | -4/+14 |
|
|
* | Fix a warning on ppc (debian) | Neal Norwitz | 2006-04-28 | 1 | -4/+7 |
|
|
* | Fix a warning on alpha | Neal Norwitz | 2006-04-28 | 1 | -1/+1 |
|
|
* | - Add new Warning class, ImportWarning | Thomas Wouters | 2006-04-27 | 2 | -7/+35 |
|
|
* | Define MAXPATHLEN to be at least PATH_MAX, if that's defined. Python uses | Thomas Wouters | 2006-04-25 | 1 | -0/+4 |
|
|
* | Fix more ssize_t issues. | Martin v. Löwis | 2006-04-22 | 3 | -4/+4 |
|
|
* | Teach Python/ceval.c's inlining of 'str += str' about Py_ssize_t sizes; this | Thomas Wouters | 2006-04-19 | 1 | -2/+2 |
|
|
* | Change those parts of the Python-api that were functions in 2.4, and | Thomas Heller | 2006-04-18 | 1 | -4/+96 |
|
|
* | Refactor: Move code that uses co_lnotab from ceval to codeobject | Jeremy Hylton | 2006-04-18 | 1 | -117/+14 |
|
|
* | Remove types from type_list if they have no objects | Martin v. Löwis | 2006-04-18 | 1 | -2/+9 |
|
|
* | C++ compiler cleanup: cast... | Skip Montanaro | 2006-04-18 | 1 | -2/+2 |
|
|
* | C++ compiler cleanup: extern "C" a couple declarations, cast int to size_t | Skip Montanaro | 2006-04-18 | 1 | -1/+9 |
|
|
* | C++ compiler cleanup: migrate to modsupport.h | Skip Montanaro | 2006-04-18 | 1 | -3/+0 |
|
|
* | This patches fixes a number of byteorder problems in MacOSX specific code. | Ronald Oussoren | 2006-04-17 | 1 | -2/+6 |
|
|
* | moduleName can be NULL | Neal Norwitz | 2006-04-17 | 1 | -1/+1 |
|
|
* | Add missing DECREF to PyErr_WriteUnraisable(). That function reports | Thomas Wouters | 2006-04-15 | 1 | -0/+1 |
|
|
* | Use Py_VISIT in all tp_traverse methods, instead of traversing manually or | Thomas Wouters | 2006-04-15 | 1 | -9/+3 |
|
|
* | Zap ZAP. | Martin v. Löwis | 2006-04-15 | 1 | -25/+18 |
|
|
* | Use Py_CLEAR instead of in-place DECREF/XDECREF or custom macros, for | Thomas Wouters | 2006-04-15 | 1 | -4/+2 |
|
|
* | Fix sys.getobjects(0): we get a reference to the | Martin v. Löwis | 2006-04-15 | 1 | -0/+3 |
|
|
* | Make Py_BuildValue, PyObject_CallFunction and | Martin v. Löwis | 2006-04-14 | 3 | -25/+73 |
|
|
* | SF Bug #1454485, array.array('u') could crash the interpreter when | Neal Norwitz | 2006-04-14 | 1 | -5/+2 |
|
|
* | ALIGNMENT_SHIFT is not used | Neal Norwitz | 2006-04-14 | 1 | -1/+0 |
|
|
* | Force 8-alignment of memory blocks, as needed on | Martin v. Löwis | 2006-04-13 | 1 | -1/+8 |
|
|
* | Fix type errors. | Martin v. Löwis | 2006-04-13 | 1 | -2/+2 |
|
|
* | Introduce asdl_int_seq, to hold cmpop_ty. | Martin v. Löwis | 2006-04-13 | 4 | -18/+27 |
|
|
* | revert - breaks build of Python/ast.c w/ gcc | Skip Montanaro | 2006-04-13 | 1 | -2/+5 |
|
|
* | Use union to discriminate pointer types from enum/int types. | Skip Montanaro | 2006-04-13 | 1 | -5/+2 |
|
|
* | Add a test for Py_ssize_t. Correct typo in getargs.c. | Georg Brandl | 2006-04-13 | 1 | -2/+2 |
|
|
* | Replace INT_MAX with PY_SSIZE_T_MAX. | Martin v. Löwis | 2006-04-13 | 3 | -9/+8 |
|
|
* | spread the extern "C" { } magic pixie dust around. Python itself builds now | Anthony Baxter | 2006-04-13 | 6 | -0/+55 |
|
|
* | casting nastiness to make C++ compiler happy | Anthony Baxter | 2006-04-13 | 1 | -2/+10 |
|
|
* | Ignore the references to the dummy objects used as deleted keys | Armin Rigo | 2006-04-12 | 2 | -4/+3 |
|
|
* | avoid C++ name mangling for the _Py.*SizeT functions | Anthony Baxter | 2006-04-12 | 1 | -0/+6 |
|
|
* | Make symtable.c safe for C++ compilers. Changed macros in the same way as | Anthony Baxter | 2006-04-12 | 1 | -11/+13 |
|
|
* | per Jeremy's email, remove the _WITH_CAST versions of macros. g++ | Anthony Baxter | 2006-04-12 | 1 | -46/+24 |
|
|
* | Part two of the fix for SF bug #1466641: Regenerate graminit.c and add test | Thomas Wouters | 2006-04-12 | 1 | -2/+2 |
|
|
* | Some more changes to make code compile under a C++ compiler. | Anthony Baxter | 2006-04-11 | 1 | -1/+1 |
|
|
* | more low-hanging fruit to make code compile under a C++ compiler. Not | Anthony Baxter | 2006-04-11 | 4 | -68/+100 |
|
|
* | Convert 0 to their respective enum types. Convert | Martin v. Löwis | 2006-04-11 | 1 | -11/+11 |
|
|
* | Regenerate. | Martin v. Löwis | 2006-04-11 | 1 | -2/+0 |
|
|
* | Make _kind types global for C++ compilation. | Martin v. Löwis | 2006-04-11 | 1 | -1/+1 |
|
|
* | low-hanging fruit in Python/ - g++ still hates all the enum_kind declarations | Anthony Baxter | 2006-04-11 | 4 | -22/+24 |
|
|
* | SF Patch #1463867: Improved generator finalization to allow generators | Phillip J. Eby | 2006-04-10 | 1 | -0/+3 |
|
|
* | Use PyObject_* allocator since FutureFeatures is small | Neal Norwitz | 2006-04-10 | 2 | -3/+3 |
|
|