summaryrefslogtreecommitdiffstats
path: root/Include
Commit message (Expand)AuthorAgeFilesLines
* Revert revisions:Tim Peters2006-06-041-3/+0
* Patch #1346214: correctly optimize away "if 0"-style stmtsGeorg Brandl2006-06-041-0/+2
* Patch #1359618: Speed-up charmap encoder.Martin v. Löwis2006-06-041-0/+5
* Patch #1454481: Make thread stack size runtime tunable.Andrew MacIntyre2006-06-041-0/+3
* Convert relevant dict internals to Py_ssize_t.Tim Peters2006-05-301-5/+9
* needforspeed: added Py_MEMCPY macro (currently tuned for Visual C only),Fredrik Lundh2006-05-282-9/+23
* Conversion of exceptions over from faked-up classes to new-style C types.Richard Jones2006-05-271-2/+66
* needforspeed: backed out the Py_LOCAL-isation of ceval; the massive in-Fredrik Lundh2006-05-271-8/+15
* Patch 1145039.Tim Peters2006-05-261-0/+9
* needforspeed: added rpartition implementationFredrik Lundh2006-05-261-1/+12
* needforspeed: added PY_LOCAL_AGGRESSIVE macro to enable "aggressive"Fredrik Lundh2006-05-261-0/+8
* use Py_LOCAL also for string and unicode objectsFredrik Lundh2006-05-261-2/+7
* needforspeed: added Py_LOCAL macro, based on the LOCAL macro usedFredrik Lundh2006-05-261-0/+17
* needforspeed: partition implementation, part two.Fredrik Lundh2006-05-261-0/+9
* A new table to help string->integer conversion was added yesterday toTim Peters2006-05-251-0/+1
* Fix incorrect documentation for the Py_IS_FINITE(X) macro.Kristján Valur Jónsson2006-05-251-3/+3
* Fix another typoAndrew M. Kuchling2006-05-251-1/+1
* Fix comment typosAndrew M. Kuchling2006-05-251-1/+1
* Added a new macro, Py_IS_FINITE(X). On windows there is an intrinsic for thi...Kristján Valur Jónsson2006-05-251-0/+9
* Applied patch 1337051 by Neal Norwitz, saving 4 ints on frame objects.Richard Jones2006-05-231-4/+0
* Merge from rjones-funccall branch.Richard Jones2006-05-231-0/+1
* needforspeed: check first *and* last character before doing a full memcmpFredrik Lundh2006-05-231-4/+6
* needforspeed: use memcpy for "long" strings; use a better algorithmFredrik Lundh2006-05-221-4/+9
* needforspeed: speed up unicode repeat, unicode string copyFredrik Lundh2006-05-221-4/+7
* Patch #1492356: Port to Windows CE (patch set 1).Martin v. Löwis2006-05-222-0/+14
* - Add new Warning class, ImportWarningThomas Wouters2006-04-271-0/+1
* 2.5a2Anthony Baxter2006-04-271-2/+2
* Define MAXPATHLEN to be at least PATH_MAX, if that's defined. Python usesThomas Wouters2006-04-251-0/+4
* Refactor: Move code that uses co_lnotab from ceval to codeobjectJeremy Hylton2006-04-181-0/+15
* Remove types from type_list if they have no objectsMartin v. Löwis2006-04-181-1/+3
* C++ compile cleanup: proper declaration of _Py_BuildValue_SizeTSkip Montanaro2006-04-181-0/+1
* C++ compilation cleanup: Migrate declaration ofSkip Montanaro2006-04-181-0/+5
* frame_traverse(): Use the standard Py_VISIT macro.Tim Peters2006-04-151-7/+7
* There were no comments explaining what Py_CLEAR() did orTim Peters2006-04-151-0/+34
* Make Py_BuildValue, PyObject_CallFunction andMartin v. Löwis2006-04-142-12/+7
* Introduce asdl_int_seq, to hold cmpop_ty.Martin v. Löwis2006-04-132-2/+8
* revert - breaks build of Python/ast.c w/ gccSkip Montanaro2006-04-131-7/+3
* Use union to discriminate pointer types from enum/int types.Skip Montanaro2006-04-131-3/+7
* Don't set gi_frame to Py_None, use NULL instead, eliminating some insanePhillip J. Eby2006-04-121-0/+1
* Ignore the references to the dummy objects used as deleted keysArmin Rigo2006-04-121-0/+3
* Make _kind types global for C++ compilation.Martin v. Löwis2006-04-111-16/+20
* C++ already defines a perfectly good 'bool'. Use that.Anthony Baxter2006-04-111-0/+2
* SF Patch #1463867: Improved generator finalization to allow generatorsPhillip J. Eby2006-04-101-0/+1
* Fixed error in comment for new PY_SSIZE_T_MIN.Tim Peters2006-04-051-1/+1
* Add PY_SSIZE_T_MIN, as suggested by Ralf W. Grosse-Kunstleve.Martin v. Löwis2006-04-051-0/+2
* aargh. Don't make last minute re-organisations before checkin!Anthony Baxter2006-04-041-1/+1
* PyAPI_FUNC() the PyArg_.*SizeT forms. Without this, cygwin has hysterics.Anthony Baxter2006-04-041-0/+12
* Add lineno, col_offset to excephandler to enable future fix forJeremy Hylton2006-04-041-2/+4
* preparation for 2.5a1Anthony Baxter2006-04-031-2/+2
* Don't abbreviate ABS, use long name ABSOLUTE.Neal Norwitz2006-04-033-3/+3