summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
Commit message (Expand)AuthorAgeFilesLines
* low-hanging fruit in Python/ - g++ still hates all the enum_kind declarationsAnthony Baxter2006-04-111-2/+2
* SF Patch #1463867: Improved generator finalization to allow generatorsPhillip J. Eby2006-04-101-0/+3
* answer a question from a commentArmin Rigo2006-03-281-3/+3
* Fix a ssize_t issueNeal Norwitz2006-03-231-1/+1
* Um, I thought I'd already checked this in.Guido van Rossum2006-03-101-22/+25
* Checking in the code for PEP 357.Guido van Rossum2006-03-071-46/+22
* SF #1444030: Fix several potential defects found by Coverity.Hye-Shik Chang2006-03-071-1/+4
* Use Py_ssize_t since we are working with list size belowNeal Norwitz2006-03-021-1/+1
* Put back the essence of Jeremy's original XXX comment.Thomas Wouters2006-03-011-1/+3
* PEP 352 implementation. Creates a new base class, BaseException, which has anBrett Cannon2006-03-011-5/+5
* Updates to the with-statement:Guido van Rossum2006-02-281-6/+20
* SF patch #1438387, PEP 328: relative and absolute imports.Thomas Wouters2006-02-281-6/+17
* Check the return code for PyErr_Warn() when warning about raising stringBrett Cannon2006-02-271-4/+5
* PEP 343 -- the with-statement.Guido van Rossum2006-02-271-7/+42
* Bug #801349: document that start/stop/step slice arguments can be NoneGeorg Brandl2006-02-191-1/+1
* Remove size constraints in SLICE opcodes.Martin v. Löwis2006-02-171-16/+11
* Merge ssize_t branch.Martin v. Löwis2006-02-151-5/+8
* Explain the clearing of the stack in a comment in Python/ceval.c'sThomas Wouters2006-02-101-1/+2
* Add const to several API functions that take char *.Jeremy Hylton2005-12-101-2/+2
* Fix some mods that got dropped from the AST mergeNeal Norwitz2005-10-211-2/+2
* Merge ast-branch to headJeremy Hylton2005-10-201-30/+15
* clean-up tracing of C functions. In particular, don't call the trace funcArmin Rigo2005-09-201-26/+31
* 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