summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Use PyInt_AS_LONG macro instead of explicit inlining.Guido van Rossum1998-12-041-6/+6
* Whoops! One the "redundant" initializations removed by Vladimir inGuido van Rossum1998-11-231-2/+2
* Remove some redundant initializations -- patch by Vladimir Marangozov.Guido van Rossum1998-11-171-4/+4
* Changes to support other object types besides stringsGuido van Rossum1998-10-071-5/+8
* Renamed thread.h to pythread.h.Guido van Rossum1998-10-011-1/+1
* Add the type of the object to the error message about calling a non-function.Guido van Rossum1998-08-251-3/+5
* In BUILD_LIST, use PyList_SET_ITEM() instead of PyList_SetItem(); andGuido van Rossum1998-08-041-3/+1
* # In case BINARY_SUBSCR, use proper PyList_GET* macros instead of inlining.Guido van Rossum1998-07-081-3/+3
* Marc-Andre Lemburg's patch to support instance methods with otherGuido van Rossum1998-07-081-0/+5
* Moved cmp_member() to abstract.c, as PySequence_Contains() [withGuido van Rossum1998-05-221-53/+2
* Since PyDict_GetItem() can't raise an exception any more, there's noGuido van Rossum1998-05-141-3/+0
* DELETE_FAST should issue an exception when the local variable is undefined.Guido van Rossum1998-05-121-0/+7
* Make new gcc -Wall happyGuido van Rossum1998-04-101-1/+2
* Make first raise argument optionalGuido van Rossum1998-04-091-0/+12
* Last-minute fix for Jim H: don't die after del sys.stdoutGuido van Rossum1997-12-311-2/+11
* Plug the most annoying recursive printing problem -- reset '_' to NoneGuido van Rossum1997-12-261-3/+8
* Give more detailed error message when the argument count isn't right.Guido van Rossum1997-11-191-4/+6
* Fix memory leak in exec statement with code object -- the None returnedGuido van Rossum1997-11-111-2/+4
* Change PyEval_SaveThread() and PyEval_RestoreThread() to always do theGuido van Rossum1997-09-301-12/+9
* First part of package support.Guido van Rossum1997-09-051-10/+4
* Inline PyObject_CallObject (Marc-Andre Lemburg).Guido van Rossum1997-08-301-0/+5
* eval_code2(), set_exc_info(): Call PyErr_NormalizeException() theBarry Warsaw1997-08-281-2/+2
* unpack_sequence(): In finally clause, watch out for Py_DECREFBarry Warsaw1997-08-251-2/+2
* eval_code2(): collapsed the implementations of UNPACK_TUPLE andBarry Warsaw1997-08-251-33/+74
* cmp_exception gets promoted (essentially) to the C API functionBarry Warsaw1997-08-221-59/+10
* Reverse the search order for the Don Beaudry hook so that the firstGuido van Rossum1997-08-221-4/+3
* Renamed a local label that was accidentally grandly renamed toGuido van Rossum1997-08-051-3/+3
* The last of the mass checkins for separate (sub)interpreters.Guido van Rossum1997-08-021-9/+20