summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
Commit message (Expand)AuthorAgeFilesLines
* Add a second special case to the inline function call code in eval_code2().Jeremy Hylton2001-05-181-1/+7
* Make PyIter_Next() a little smarter (wrt its knowledge of iteratorTim Peters2001-05-051-5/+3
* improved error message-- names the type of the unexpected objectJeremy Hylton2001-04-271-2/+3
* Mondo changes to the iterator stuff, without changing how Python codeGuido van Rossum2001-04-231-27/+16
* SF but #417587: compiler warnings compiling 2.1.Tim Peters2001-04-211-1/+0
* Iterators phase 1. This comprises:Guido van Rossum2001-04-201-0/+41
* Change error message raised when free variable is not yet bound. ItJeremy Hylton2001-04-131-10/+16
* Patch by Ping (SF bug 415879, Exception.__init__() causes segfault):Guido van Rossum2001-04-131-3/+2
* Fix exception handling for non-PyFunction objects, SF bug 414743.Jeremy Hylton2001-04-111-16/+54
* Extend support for from __future__ import nested_scopesJeremy Hylton2001-03-221-2/+16
* If a code object is compiled with nested scopes, define the CO_NESTED flag.Jeremy Hylton2001-03-221-1/+9
* Use PyObject_IsInstance() to check whether the first argument to anGuido van Rossum2001-03-211-13/+19
* Fix PyFrame_FastToLocals() and counterpart to deal with cells andJeremy Hylton2001-03-211-4/+45
* Variety of small INC/DECREF patches that fix reported memory leaksJeremy Hylton2001-03-131-4/+7
* Remove trailing comma from 'why_code' enum, which was introduced by theThomas Wouters2001-02-161-1/+1
* When calling a PyCFunction that has METH_KEYWORDS defined, don'tJeremy Hylton2001-02-091-10/+0
* SF patch 103596 by Nick Mathewson: rause UnboundLocalError forJeremy Hylton2001-02-051-0/+16
* Allow 'continue' inside 'try' clauseJeremy Hylton2001-02-011-4/+24
* Undo recent change that banned using import to bind a global, as perJeremy Hylton2001-02-011-5/+3
* SF bug #130532: newest CVS won't build on AIX.Tim Peters2001-01-311-2/+0
* Remove f_closure slot of frameobject and use f_localsplus instead.Jeremy Hylton2001-01-291-4/+16
* PEP 227 implementationJeremy Hylton2001-01-251-12/+77
* clearer error messages for apply() and "no locals"Jeremy Hylton2001-01-191-7/+12
* Rich comparisons fall-out:Guido van Rossum2001-01-171-148/+147
* This patch makes sure that the function name always appears in the errorKa-Ping Yee2001-01-151-29/+54
* Two changes to from...import:Guido van Rossum2001-01-121-30/+54
* Fixed bugs noted by Greg SteinMoshe Zadka2001-01-111-0/+2
* Implementation of PEP-0217.Moshe Zadka2001-01-111-27/+17
* Add missing Py_DECREF in fast_cfunction. Partial fix for SF bugCharles G. Waldman2001-01-101-3/+6
* When a PyCFunction that takes only positional parameters is called withFred Drake2001-01-041-18/+19
* Revised implementation of CALL_FUNCTION and friends.Jeremy Hylton2001-01-031-296/+429
* Fix for SF bug #117241Jeremy Hylton2000-10-301-1/+15
* Ka-Ping Yee <ping@lfw.org>:Fred Drake2000-10-241-29/+48
* Do a better job at staying on-screen :P (Sorry, it's late here.) I'mThomas Wouters2000-10-111-1/+2
* Adjust debugging code in the implementation of the DUP_TOPX bytecode, useThomas Wouters2000-10-111-5/+1
* Remove the last gcc -Wall warning about possible use of an uninitializedFred Drake2000-10-111-0/+1
* Attempt to fix bogus gcc -Wall warnings reported by Marc-Andre Lemburg,Tim Peters2000-10-111-31/+61
* Rationalize use of limits.h, moving the inclusion to Python.h.Fred Drake2000-09-261-6/+0
* This patch adds a new Python C API called PyString_AsStringAndSize()Marc-André Lemburg2000-09-191-6/+4
* REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum2000-09-011-9/+0
* Cosmetics on Py_Get/SetRecursionLimit (for the style guide)Vladimir Marangozov2000-09-011-2/+4
* Revert removal of void from function definition. Guido sez I can take itTim Peters2000-09-011-1/+1
* Set the recursion limit to 1000 -- 2500 was not enough, let's beGuido van Rossum2000-09-011-1/+1
* Supply missing prototypes for new Py_{Get,Set}RecursionLimit; fixes compiler ...Tim Peters2000-09-011-1/+1
* add user-modifiable recursion_limitJeremy Hylton2000-08-311-5/+15
* Better error message with UnboundLocalErrorPaul Prescod2000-08-301-11/+39
* eval_code2(): Guido provides this patch for his suggested elaborationBarry Warsaw2000-08-291-2/+2
* Replace the run-time 'future-bytecode-stream-inspection' hack to find outThomas Wouters2000-08-271-55/+1
* Charles Waldman's patch to reinitialize the interpreter lock after aGuido van Rossum2000-08-271-0/+19
* Support for three-token characters (**=, >>=, <<=) which was written byThomas Wouters2000-08-241-4/+201