summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
Commit message (Expand)AuthorAgeFilesLines
* Plug leak of stack frame object in exception handling code.Guido van Rossum1997-05-201-9/+26
* Logic for enabling mac-specific signal handling fixed (Jack)Guido van Rossum1997-05-201-1/+1
* (int) cast for strlen() to keep picky compilers happy.Guido van Rossum1997-05-131-1/+1
* Instead of importing graminit.h whenever one of the three grammar 'root'Guido van Rossum1997-05-071-3/+3
* Used operators from abstract.h where possible (arithmetic operators,Guido van Rossum1997-05-061-420/+30
* Massive changes for separate thread state management.Guido van Rossum1997-05-051-151/+263
* Quickly renamed.Guido van Rossum1997-04-291-799/+798
* Clarify error message for unexpected keyword parameter.Guido van Rossum1997-03-101-1/+4
* *Don't* kill all local variables on function exit. This will be doneGuido van Rossum1997-02-141-12/+0
* Two small changes:Guido van Rossum1997-01-271-5/+3
* Plug a leak with calling something other than a function or method isGuido van Rossum1997-01-271-4/+3
* Patches for (two forms of) optional dynamic execution profiling --Guido van Rossum1997-01-241-0/+68
* Change the control flow for error handling in the function prelude toGuido van Rossum1997-01-241-23/+17
* Kill all local variables on function return. This closes a giganticGuido van Rossum1997-01-211-0/+12
* Only call sigcheck() at the ticker code if we don't have true signals.Guido van Rossum1997-01-211-2/+6
* Cleanup:Guido van Rossum1997-01-211-222/+10
* Changes for frame object speedup:Guido van Rossum1997-01-201-14/+2
* Add "if (x != NULL) continue;" (or similar for err==0) before theGuido van Rossum1997-01-181-18/+60
* Use the stack size from the code object and the CO_MAXBLOCKS constantGuido van Rossum1997-01-171-2/+10
* Rename DEBUG macro to Py_DEBUGGuido van Rossum1996-12-301-3/+3
* Moved the raise logic out of the main interpreter loop to a separate function.Guido van Rossum1996-12-101-60/+127
* Change the Don Beaudry hack into the Don B + Jim F hack; now, if *any*Guido van Rossum1996-12-051-28/+26
* New permission notice, includes CNRI.Guido van Rossum1996-10-251-13/+20
* Raise TypeError, not KeyError, on unknown keyword argument.Guido van Rossum1996-08-191-2/+1
* Don't test here for negative number to float power; that belongs inGuido van Rossum1996-08-161-9/+0
* Disable support for access statementGuido van Rossum1996-08-121-0/+28
* Better error message if stride used on normal sequence objectGuido van Rossum1996-07-301-2/+10
* Changes for slice and ellipsesGuido van Rossum1996-07-301-13/+67
* Renamed static pow() to powerop() to avoid name conflict in some compilers.Guido van Rossum1996-06-191-4/+4
* Removed some done "to do" items.Guido van Rossum1996-05-241-9/+3
* removed sime redundant header includes and decls.Guido van Rossum1996-05-231-8/+0
* changes for complex and power (**) operatorGuido van Rossum1996-01-121-0/+38
* don't return from main loop when error occursGuido van Rossum1995-12-101-1/+2
* spell TraceBack with capital BGuido van Rossum1995-09-181-1/+1
* empty kw dict is ok for builtinsGuido van Rossum1995-08-041-1/+6
* fix bogus DECREF in finally clauseGuido van Rossum1995-07-281-0/+1
* changes for keyword args to built-in functions and classesGuido van Rossum1995-07-261-19/+43
* keyword arguments and faster callsGuido van Rossum1995-07-181-364/+459
* 3rd arg for raise; INCOMPLETE keyword parameter passing (currently f(kw=value...Guido van Rossum1995-07-071-30/+151
* fix dusty debugging macrosGuido van Rossum1995-03-291-1/+1
* remove unused code for tp_callGuido van Rossum1995-03-221-13/+1
* various tuple related optimizations; remove unused b/w compat code from ceval.cGuido van Rossum1995-03-091-74/+26
* fix bug in try-finally with class exceptions; declare different func pointers...Guido van Rossum1995-02-171-6/+7
* call __import__() with 4 args instead of 1Guido van Rossum1995-02-141-1/+51
* use Py_CHARMASKGuido van Rossum1995-02-101-1/+2
* DECREF result of run_stringGuido van Rossum1995-02-071-2/+3
* remove unused variableGuido van Rossum1995-01-301-1/+0
* allow classes as exceptionsGuido van Rossum1995-01-261-4/+26
* add missing INCREF in RAISE_EXCEPTIONGuido van Rossum1995-01-201-1/+2
* different init for __builtins__Guido van Rossum1995-01-171-2/+2