summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Charles G. Waldman <cgw@fnal.gov>:Fred Drake2000-08-241-0/+6
* PEP 214, Extended print Statement, has been accepted by the BDFL.Barry Warsaw2000-08-211-16/+33
* Fix the bug Sjoerd Mullender discovered, where find_from_args() wasn'tThomas Wouters2000-08-201-1/+3
* Remove a couple of warnings turned up by "gcc -Wall".Fred Drake2000-08-181-1/+2
* Apply SF patch #101135, adding 'import module as m' and 'from module importThomas Wouters2000-08-171-43/+70
* Merge UNPACK_LIST and UNPACK_TUPLE into a single UNPACK_SEQUENCE, since theyThomas Wouters2000-08-111-2/+1
* Initialized opcode and oparg to silence a gcc -Wall warning.Moshe Zadka2000-08-071-2/+2
* Use 'void' directly instead of the ANY #define, now that all code is ANSI C.Thomas Wouters2000-07-251-5/+5
* Mass ANSIfication of function definitions. Doesn't cover all 'extern'Thomas Wouters2000-07-221-112/+49