summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
Commit message (Expand)AuthorAgeFilesLines
* Make undetected error on stack unwind a fatal error.Jeremy Hylton2003-11-051-4/+4
* Deleting cyclic object comparison.Armin Rigo2003-10-281-20/+36
* oh dear. Wrong manipulation. Committed a version of ceval.c from myArmin Rigo2003-10-251-28/+20
* Made function declaration a proper C prototypeArmin Rigo2003-10-251-20/+28
* Simplify and speedup uses of Py_BuildValue():Raymond Hettinger2003-10-121-3/+3
* Fix SF #762455, segfault when sys.stdout is changed in getattrNeal Norwitz2003-06-291-0/+6
* Add PyThreadState_SetAsyncExc(long, PyObject *).Guido van Rossum2003-06-281-1/+17
* Use fast_next_opcode shortcut for forward jump opcodes (it's safe andNeil Schemenauer2003-06-011-5/+5
* SF bug #733667: kwargs handled incorrectlyRaymond Hettinger2003-05-311-1/+1
* Don't use fast_next_opcode for JUMP_* opcodes. This fixes the problemNeil Schemenauer2003-05-301-6/+6
* Armin Rigo's fix & test forMichael W. Hudson2003-04-291-9/+10
* Revert the previous enhancement to the bytecode optimizer.Raymond Hettinger2003-04-241-3/+0
* Improved the bytecode optimizer.Raymond Hettinger2003-04-221-0/+3
* New PyGILState_ API - implements pep 311, from patch 684256.Mark Hammond2003-04-191-0/+2
* - New function sys.call_tracing() allows pdb to debug codeGuido van Rossum2003-04-091-0/+18
* Eliminate data dependency in predict macro.Raymond Hettinger2003-03-161-2/+8
* Fix comment and whitespace.Raymond Hettinger2003-03-161-3/+4
* Introduced macros for a simple opcode prediction protocol.Raymond Hettinger2003-03-161-6/+35
* SF patch #701907: More use of fast_next_opcodeRaymond Hettinger2003-03-141-11/+11
* Added implementation notes for [re]set_exc_info().Guido van Rossum2003-03-011-0/+61
* In the process of adding all the extended slice support I attempted toMichael W. Hudson2003-02-271-4/+4
* Micro-optimizations.Raymond Hettinger2003-02-261-4/+18
* - PyEval_GetFrame() is now declared to return a PyFrameObject *Guido van Rossum2003-02-191-7/+7
* patch #683515: "Add unicode support to compile(), eval() and exec"Just van Rossum2003-02-101-2/+13
* Small function call optimization and special build option for call stats.Jeremy Hylton2003-02-051-12/+142
* SF patch #670367: Micro-optimizations for ceval.cRaymond Hettinger2003-01-191-18/+13
* Replaced POP() with STACKADJ(-1) on lines where the result wasn't used.Raymond Hettinger2003-01-141-2/+2
* As discussed on python-dev, removed from DUP_TOPX support for theRaymond Hettinger2003-01-101-35/+0
* As discussed briefly on python-dev, add Pending Deprecation WarningNeal Norwitz2003-01-101-3/+5
* SF patch #664320: Replace push/pop clusters in ceval.cRaymond Hettinger2003-01-091-150/+167
* Make private functions static so we don't pollute the namespaceNeal Norwitz2002-11-101-1/+1
* This is Richie Hindle's patch:Michael W. Hudson2002-11-081-7/+16
* Assorted patches from Armin Rigo:Michael W. Hudson2002-11-081-42/+48
* Handle really big steps in extended slices.Michael W. Hudson2002-11-061-1/+1
* One last tweak to the tracing machinery: this actually computes what I intendedMichael W. Hudson2002-10-031-1/+3
* Fix for the recursion_level bug Armin Rigo reported in sfMichael W. Hudson2002-10-021-0/+4
* A slight change to SET_LINENO-less tracing.Michael W. Hudson2002-09-111-5/+18
* Bump default check interval to 100 instructions. Computers are much fasterSkip Montanaro2002-09-031-2/+2
* replace thread state objects' ticker and checkinterval fields with twoSkip Montanaro2002-09-031-2/+8
* Further SET_LINENO reomval fixes. See comments in patch #587933.Michael W. Hudson2002-08-301-34/+20
* The error messages in err_args() -- which is only called when theGuido van Rossum2002-08-231-2/+2
* Comment typo repair.Michael W. Hudson2002-08-201-1/+1
* My patch #597221. Use f_lasti more consistently.Michael W. Hudson2002-08-201-9/+9
* Add a warning comment to the LOAD_GLOBAL inline code.Guido van Rossum2002-08-191-1/+3
* Another ugly inlining hack, expanding the two PyDict_GetItem() callsGuido van Rossum2002-08-191-1/+25
* Inline fast_cfunction() in new call_function().Jeremy Hylton2002-08-161-55/+33
* Move body of CALL_FUNCTION opcode into helper function.Jeremy Hylton2002-08-161-54/+56
* Streamline the fast track for CFunction calls a bit more: there wasGuido van Rossum2002-08-161-5/+2
* This is my patchMichael W. Hudson2002-08-151-36/+167
* Add weakref support generator-iterators.Fred Drake2002-08-091-1/+7