summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in eitherThomas Wouters2000-07-161-1/+1
* Include macglue.h for some function prototypes, and renamed a fewJack Jansen2000-07-111-0/+4
* Nuke all remaining occurrences of Py_PROTO and Py_FPROTO.Tim Peters2000-07-091-31/+29
* Change copyright notice - 2nd try.Guido van Rossum2000-06-301-6/+0
* Change copyright notice.Guido van Rossum2000-06-301-22/+7
* Trent Mick's Win64 changes: size_t vs. int or long; also some overflowGuido van Rossum2000-06-281-1/+1
* Trent Mick:Guido van Rossum2000-05-081-11/+14
* Add useless 'return 1' to prtrace() to shut up VC++.Guido van Rossum2000-05-041-0/+1
* Vladimir Marangozov's long-awaited malloc restructuring.Guido van Rossum2000-05-031-1/+2
* Charles Waldman writes:Guido van Rossum2000-04-211-14/+13
* Skip Montanaro: add string precisions to calls to PyErr_FormatGuido van Rossum2000-04-101-1/+1
* Thomas Heller fixes a typo in an error message.Guido van Rossum2000-03-311-1/+1
* rename args variable in CALL_FUNCTION to callargs (avoids nameJeremy Hylton2000-03-311-8/+11
* Two fixes for extended call syntax:Jeremy Hylton2000-03-301-12/+21
* eval_code2(): Oops, in the last checkin, we shouldn't check forBarry Warsaw2000-03-291-6/+2
* eval_code2(): In the extended calling syntax opcodes, you must checkBarry Warsaw2000-03-291-0/+8
* slightly modified version of Greg Ewing's extended call syntax patchJeremy Hylton2000-03-281-119/+160
* Allow using long integers as slice indexesAndrew M. Kuchling2000-02-231-2/+34
* Remove comment that Guido agree's doesn't make sense:Fred Drake2000-02-211-2/+0
* Fix a bug in exec_statement() noted incidentally by Tim Peters inGuido van Rossum2000-01-121-20/+13
* Change the last PyErr_Format %s format to %.400s.Guido van Rossum1999-11-151-1/+1
* Fix PR117. The error message is "keywords must be strings". PerhapsGuido van Rossum1999-10-261-0/+5
* call_trace(): A fix for PR#73, if an exception occurred in theBarry Warsaw1999-09-081-0/+8
* Patch by Tim Peters:Guido van Rossum1999-06-221-2/+2
* Changes by Mark Hammond for Windows CE. Mostly of the formGuido van Rossum1999-04-071-0/+2
* Always test for an error return (usually NULL or -1) without settingGuido van Rossum1999-03-091-3/+4
* Thanks to Chris Herborth, the thread primitives now have proper Py*Guido van Rossum1998-12-211-13/+13
* Use PyThreadState_GET() macro.Guido van Rossum1998-12-211-1/+1