summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
Commit message (Expand)AuthorAgeFilesLines
...
* 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
* Improved the bytecode optimizer.Raymond Hettinger2003-04-221-0/+3
* New PyGILState_ API - implements pep 311, from patch 684256.Mark Hammond2003-04-191-0/+2
* - New function sys.call_tracing() allows pdb to debug codeGuido van Rossum2003-04-091-0/+18
* Eliminate data dependency in predict macro.Raymond Hettinger2003-03-161-2/+8
* Fix comment and whitespace.Raymond Hettinger2003-03-161-3/+4
* Introduced macros for a simple opcode prediction protocol.Raymond Hettinger2003-03-161-6/+35
* SF patch #701907: More use of fast_next_opcodeRaymond Hettinger2003-03-141-11/+11
* Added implementation notes for [re]set_exc_info().Guido van Rossum2003-03-011-0/+61
* In the process of adding all the extended slice support I attempted toMichael W. Hudson2003-02-271-4/+4
* Micro-optimizations.Raymond Hettinger2003-02-261-4/+18
* - PyEval_GetFrame() is now declared to return a PyFrameObject *Guido van Rossum2003-02-191-7/+7
* patch #683515: "Add unicode support to compile(), eval() and exec"Just van Rossum2003-02-101-2/+13
* Small function call optimization and special build option for call stats.Jeremy Hylton2003-02-051-12/+142
* SF patch #670367: Micro-optimizations for ceval.cRaymond Hettinger2003-01-191-18/+13