summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
Commit message (Expand)AuthorAgeFilesLines
* Port from the Python 2.4 branch, patches for SF bug # 900092,Barry Warsaw2005-08-151-8/+14
* PEP 342 implementation. Per Guido's comments, the generator throw()Phillip J. Eby2005-08-021-3/+15
* Fix signedness of various char variables to stop causing a warning under gcc 4.Brett Cannon2005-06-251-1/+1
* Add comments about PyThreadState and the usage of its fields.Brett Cannon2005-06-251-0/+4
* Make a handy macro, Py_DEFAULT_RECURSION_LIMIT to allow to defineHye-Shik Chang2005-04-041-2/+5
* Change the name of the macro used by --with-tsc builds to the lessMichael W. Hudson2005-01-181-29/+32
* comment tweakSkip Montanaro2005-01-081-1/+1
* 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
* 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