summaryrefslogtreecommitdiff
path: root/Python/ceval.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Refactor and optimize code for UNPACK_SEQUENCE.Raymond Hettinger2004-03-081-27/+13
* SF patch #910929: Optimize list comprehensionsRaymond Hettinger2004-03-071-0/+9
* Add pystack definition to Misc/gdbinit with some explanation of its behaviorSkip Montanaro2004-03-011-0/+4
* This is my patch #876198 plus a NEWS entry and a header frob.Michael W. Hudson2004-02-121-1/+1
* remove support for missing ANSI C header files (limits.h, stddef.h, etc).Skip Montanaro2004-02-101-11/+0
* SF patch #884022: dynamic execution profiling vs opcode predictionRaymond Hettinger2004-02-081-0/+9
* SF patch #864059: optimize eval_frameRaymond Hettinger2004-02-061-5/+6
* Getting rid of all the code inside #ifdef macintosh too.Jack Jansen2003-11-201-5/+1
* Make undetected error on stack unwind a fatal error.Jeremy Hylton2003-11-051-4/+4
* Deleting cyclic object comparison.Armin Rigo2003-10-281-20/+36
* oh dear. Wrong manipulation. Committed a version of ceval.c from myArmin Rigo2003-10-251-28/+20
* Made function declaration a proper C prototypeArmin Rigo2003-10-251-20/+28
* Simplify and speedup uses of Py_BuildValue():Raymond Hettinger2003-10-121-3/+3
* Fix SF #762455, segfault when sys.stdout is changed in getattrNeal Norwitz2003-06-291-0/+6
* Add PyThreadState_SetAsyncExc(long, PyObject *).Guido van Rossum2003-06-281-1/+17
* Use fast_next_opcode shortcut for forward jump opcodes (it's safe andNeil Schemenauer2003-06-011-5/+5
* SF bug #733667: kwargs handled incorrectlyRaymond Hettinger2003-05-311-1/+1
* Don't use fast_next_opcode for JUMP_* opcodes. This fixes the problemNeil Schemenauer2003-05-301-6/+6
* Armin Rigo's fix & test forMichael W. Hudson2003-04-291-9/+10
* Revert the previous enhancement to the bytecode optimizer.Raymond Hettinger2003-04-241-3/+0