summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* Patch #1492356: Port to Windows CE (patch set 1).Martin v. Löwis2006-05-221-2/+2
* Oops, I forgot to include this file in the last commit (46046):Neal Norwitz2006-05-191-2/+2
* Fix #1474677, non-keyword argument following keyword.Neal Norwitz2006-05-191-0/+5
* Fix #132 from Coverity, retval could have been derefedNeal Norwitz2006-05-191-0/+4
* Remove bogus DECREF of self.Martin v. Löwis2006-05-151-65/+32
* - Bug #1487966: Fix SystemError with conditional expression in assignmentNeal Norwitz2006-05-151-0/+3
* Change WindowsError to carry the Win32 error code in winerror,Martin v. Löwis2006-05-111-4/+121
* Micro optimization. In the first case, we know that frame->f_exc_typeNeal Norwitz2006-05-091-3/+1
* Get rid of __context__, per the latest changes to PEP 343 and python-devGuido van Rossum2006-05-021-10/+3
* SF #1479181: split open() and file() from being aliases for each other.Neal Norwitz2006-05-021-4/+14
* Fix a warning on ppc (debian)Neal Norwitz2006-04-281-4/+7
* Fix a warning on alphaNeal Norwitz2006-04-281-1/+1
* - Add new Warning class, ImportWarningThomas Wouters2006-04-272-7/+35
* Define MAXPATHLEN to be at least PATH_MAX, if that's defined. Python usesThomas Wouters2006-04-251-0/+4
* Fix more ssize_t issues.Martin v. Löwis2006-04-223-4/+4
* Teach Python/ceval.c's inlining of 'str += str' about Py_ssize_t sizes; thisThomas Wouters2006-04-191-2/+2
* Change those parts of the Python-api that were functions in 2.4, andThomas Heller2006-04-181-4/+96
* Refactor: Move code that uses co_lnotab from ceval to codeobjectJeremy Hylton2006-04-181-117/+14
* Remove types from type_list if they have no objectsMartin v. Löwis2006-04-181-2/+9
* C++ compiler cleanup: cast...Skip Montanaro2006-04-181-2/+2
* C++ compiler cleanup: extern "C" a couple declarations, cast int to size_tSkip Montanaro2006-04-181-1/+9
* C++ compiler cleanup: migrate to modsupport.hSkip Montanaro2006-04-181-3/+0
* This patches fixes a number of byteorder problems in MacOSX specific code.Ronald Oussoren2006-04-171-2/+6
* moduleName can be NULLNeal Norwitz2006-04-171-1/+1
* Add missing DECREF to PyErr_WriteUnraisable(). That function reportsThomas Wouters2006-04-151-0/+1
* Use Py_VISIT in all tp_traverse methods, instead of traversing manually orThomas Wouters2006-04-151-9/+3
* Zap ZAP.Martin v. Löwis2006-04-151-25/+18
* Use Py_CLEAR instead of in-place DECREF/XDECREF or custom macros, forThomas Wouters2006-04-151-4/+2
* Fix sys.getobjects(0): we get a reference to theMartin v. Löwis2006-04-151-0/+3
* Make Py_BuildValue, PyObject_CallFunction andMartin v. Löwis2006-04-143-25/+73
* SF Bug #1454485, array.array('u') could crash the interpreter whenNeal Norwitz2006-04-141-5/+2
* ALIGNMENT_SHIFT is not usedNeal Norwitz2006-04-141-1/+0
* Force 8-alignment of memory blocks, as needed onMartin v. Löwis2006-04-131-1/+8
* Fix type errors.Martin v. Löwis2006-04-131-2/+2
* Introduce asdl_int_seq, to hold cmpop_ty.Martin v. Löwis2006-04-134-18/+27
* revert - breaks build of Python/ast.c w/ gccSkip Montanaro2006-04-131-2/+5
* Use union to discriminate pointer types from enum/int types.Skip Montanaro2006-04-131-5/+2
* Add a test for Py_ssize_t. Correct typo in getargs.c.Georg Brandl2006-04-131-2/+2
* Replace INT_MAX with PY_SSIZE_T_MAX.Martin v. Löwis2006-04-133-9/+8
* spread the extern "C" { } magic pixie dust around. Python itself builds nowAnthony Baxter2006-04-136-0/+55
* casting nastiness to make C++ compiler happyAnthony Baxter2006-04-131-2/+10
* Ignore the references to the dummy objects used as deleted keysArmin Rigo2006-04-122-4/+3
* avoid C++ name mangling for the _Py.*SizeT functionsAnthony Baxter2006-04-121-0/+6
* Make symtable.c safe for C++ compilers. Changed macros in the same way asAnthony Baxter2006-04-121-11/+13
* per Jeremy's email, remove the _WITH_CAST versions of macros. g++Anthony Baxter2006-04-121-46/+24
* Part two of the fix for SF bug #1466641: Regenerate graminit.c and add testThomas Wouters2006-04-121-2/+2
* Some more changes to make code compile under a C++ compiler.Anthony Baxter2006-04-111-1/+1
* more low-hanging fruit to make code compile under a C++ compiler. NotAnthony Baxter2006-04-114-68/+100
* Convert 0 to their respective enum types. ConvertMartin v. Löwis2006-04-111-11/+11
* Regenerate.Martin v. Löwis2006-04-111-2/+0