summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
Commit message (Expand)AuthorAgeFilesLines
* Revert the following revisions, as they don't fix securityMartin v. Löwis2008-03-021-5/+3
* Backport of r52862.Armin Rigo2006-11-291-1/+3
* [Bug #1542016] Report PCALL_POP value. This makes the return value of sys.ca...Andrew M. Kuchling2006-10-271-2/+2
* [Backport r46044 | neal.norwitz]Andrew M. Kuchling2006-10-061-0/+4
* [Backport r51245 | neal.norwitz]Andrew M. Kuchling2006-10-041-1/+7
* Backport r42894: SF #1444030 Fix several potential defects foundHye-Shik Chang2006-03-071-1/+4
* Return value off PyErr_Warn() for raising string exceptions was not beingBrett Cannon2006-02-271-3/+5
* Bug #801349: document that start/stop/step slice arguments can be NoneGeorg Brandl2006-02-191-1/+1
* Cast assignments to ``unsigned char *`` from PyString_AS_STRING() calls toBrett Cannon2006-02-161-1/+1
* (backport) tracing of C functions: don't call the trace funcArmin Rigo2005-09-201-26/+31
* Fix for SF bug # 900092, hotshot.stats.load assertion failure. This patchBarry Warsaw2005-08-151-8/+14
* Hye-Shik Chang's fix for Bug 875692.Kurt B. Kaiser2004-11-231-0/+6
* SF patch 1044089: New C API function PyEval_ThreadsInitialized(), by NickTim Peters2004-10-111-3/+6
* SF bug #1014215: Unspecific errors with metaclassRaymond Hettinger2004-09-161-4/+16
* Centralize WITH_TSC processing.Martin v. Löwis2004-08-291-37/+3
* This is my patch:Michael W. Hudson2004-08-121-1/+33
* This was quite a dark bug in my recent in-place string concatenationArmin Rigo2004-08-071-1/+1
* SF patch #980695: efficient string concatenationRaymond Hettinger2004-08-061-2/+91
* Fix for the unfortunate fact that PyDict_GetItem and PyObject_GetItemMichael W. Hudson2004-08-021-2/+4
* Completed the patch for Bug #215126.Raymond Hettinger2004-08-021-3/+3
* Remove unused macros in .c filesNeal Norwitz2004-07-081-3/+0
* This closes patch:Michael W. Hudson2004-07-071-1/+1
* SF Bug #215126: Over restricted type checking on eval() functionRaymond Hettinger2004-07-021-4/+16
* Patch #966493: Cleanup generator/eval_frame exposure.Martin v. Löwis2004-06-271-14/+6
* Get ceval.c to compile again by moving declarations before other statments.Raymond Hettinger2004-06-261-1/+2
* Massive performance improvement for C extension and builtin tracing codeNicholas Bastin2004-06-251-51/+27
* Less ugly #ifdefs for C profiling fixNicholas Bastin2004-06-221-12/+5
* One forgotten C profiling #ifdefNicholas Bastin2004-06-221-1/+2
* Making C profiling a configure option (at least temporarily)Nicholas Bastin2004-06-221-0/+12
* Install two code generation optimizations that depend on NOP.Raymond Hettinger2004-06-211-0/+3
* Performance tweak: allow stack_pointer and oparg to be register variables.Armin Rigo2004-06-171-7/+16
* Patch #510695: Add TSC profiling for the VM.Martin v. Löwis2004-06-081-2/+150
* SF bug #963956: Bad error mesage when subclassing a moduleRaymond Hettinger2004-06-051-0/+9
* Patch #957398: Add public API for Generator Object/Type.Martin v. Löwis2004-06-011-138/+8
* Some (but not all) of the why code bitfield tests ran faster asRaymond Hettinger2004-04-111-3/+4
* Revert 2.393, elimination of pre-decrementing, whichRaymond Hettinger2004-04-101-17/+13
* Use continue instead of break whereever possible.Raymond Hettinger2004-04-071-2/+8
* * Improve readability and remove data dependencies by convertingRaymond Hettinger2004-04-071-14/+18
* Small code improvements for readability, code size, and/or speed.Raymond Hettinger2004-04-071-58/+54
* Simplify previous checkin (bitfields for WHY codes).Raymond Hettinger2004-04-061-12/+14
* Coded WHY flags as bitfields (taking inspiration from tp_flags).Raymond Hettinger2004-04-061-20/+16
* Since the fast_yield branch target was introduced, it appears that mostTim Peters2004-04-051-41/+41
* Changed random calls to PyThreadState_Get() to use the macroNicholas Bastin2004-03-241-5/+5
* Enable the profiling of C functions (builtins and extensions)Nicholas Bastin2004-03-241-3/+48
* Fix SF bug #765624.Armin Rigo2004-03-221-5/+12
* Cancelled checkin, sorry.Armin Rigo2004-03-201-10/+6
* A 2% speed improvement with gcc on low-endian machines. My guess is that thisArmin Rigo2004-03-201-6/+10
* LIST_APPEND is predicably followed by JUMP_ABSOLUTE.Raymond Hettinger2004-03-121-1/+5
* Move the code for BREAK and CONTINUE_LOOP to be near FOR_ITER.Raymond Hettinger2004-03-121-9/+9
* Speedup for-loops by inlining PyIter_Next(). Saves duplicate testsRaymond Hettinger2004-03-121-8/+10