- f4cf76d Revert the previous enhancement to the bytecode optimizer. by Raymond Hettinger · 22 years ago
- 060641d Improved the bytecode optimizer. by Raymond Hettinger · 22 years ago
- 8d98d2c New PyGILState_ API - implements pep 311, from patch 684256. by Mark Hammond · 22 years ago
- a12fe4e - New function sys.call_tracing() allows pdb to debug code by Guido van Rossum · 22 years ago
- 7dc5221 Eliminate data dependency in predict macro. by Raymond Hettinger · 22 years ago
- ac207292 Fix comment and whitespace. by Raymond Hettinger · 22 years ago
- f606f87 Introduced macros for a simple opcode prediction protocol. by Raymond Hettinger · 22 years ago
- 080cb32 SF patch #701907: More use of fast_next_opcode by Raymond Hettinger · 22 years ago
- c9fbb72 Added implementation notes for [re]set_exc_info(). by Guido van Rossum · 22 years ago
- e46d155 In the process of adding all the extended slice support I attempted to by Michael W. Hudson · 22 years ago
- 21012b8 Micro-optimizations. by Raymond Hettinger · 22 years ago
- 6297a7a - PyEval_GetFrame() is now declared to return a PyFrameObject * by Guido van Rossum · 22 years ago
- 3aaf42c patch #683515: "Add unicode support to compile(), eval() and exec" by Just van Rossum · 22 years ago
- 985eba5 Small function call optimization and special build option for call stats. by Jeremy Hylton · 22 years ago
- 4bad9ba SF patch #670367: Micro-optimizations for ceval.c by Raymond Hettinger · 22 years ago
- 8bb90a5 Replaced POP() with STACKADJ(-1) on lines where the result wasn't used. by Raymond Hettinger · 22 years ago
- 71731d7 As discussed on python-dev, removed from DUP_TOPX support for the by Raymond Hettinger · 22 years ago
- 37aa066 As discussed briefly on python-dev, add Pending Deprecation Warning by Neal Norwitz · 22 years ago
- 663004b SF patch #664320: Replace push/pop clusters in ceval.c by Raymond Hettinger · 22 years ago
- addfe0c Make private functions static so we don't pollute the namespace by Neal Norwitz · 22 years ago
- 006c752 This is Richie Hindle's patch: by Michael W. Hudson · 22 years ago
- 019a78e Assorted patches from Armin Rigo: by Michael W. Hudson · 22 years ago
- cbd6fb9 Handle really big steps in extended slices. by Michael W. Hudson · 22 years ago
- ca803a0 One last tweak to the tracing machinery: this actually computes what I intended by Michael W. Hudson · 22 years ago
- fb4d6ec Fix for the recursion_level bug Armin Rigo reported in sf by Michael W. Hudson · 22 years ago
- 02ff6a9 A slight change to SET_LINENO-less tracing. by Michael W. Hudson · 22 years ago
- 99dba27 Bump default check interval to 100 instructions. Computers are much faster by Skip Montanaro · 22 years ago
- d581d77 replace thread state objects' ticker and checkinterval fields with two by Skip Montanaro · 22 years ago
- 53d58bb Further SET_LINENO reomval fixes. See comments in patch #587933. by Michael W. Hudson · 22 years ago
- 86c659a The error messages in err_args() -- which is only called when the by Guido van Rossum · 22 years ago
- c230b0e Comment typo repair. by Michael W. Hudson · 22 years ago
- 62897c5 My patch #597221. Use f_lasti more consistently. by Michael W. Hudson · 22 years ago
- d8dbf84 Add a warning comment to the LOAD_GLOBAL inline code. by Guido van Rossum · 22 years ago
- 3a4dfc8 Another ugly inlining hack, expanding the two PyDict_GetItem() calls by Guido van Rossum · 22 years ago
- 192690e Inline fast_cfunction() in new call_function(). by Jeremy Hylton · 22 years ago
- e8c0432 Move body of CALL_FUNCTION opcode into helper function. by Jeremy Hylton · 22 years ago
- c13f724 Streamline the fast track for CFunction calls a bit more: there was by Guido van Rossum · 22 years ago
- dd32a91 This is my patch by Michael W. Hudson · 22 years ago
- 72bc456 Add weakref support generator-iterators. Part of fixing SF bug #591704. by Fred Drake · 22 years ago
- 496e658 get rid of GETNAMEV macro - use GETITEM directly by Skip Montanaro · 22 years ago
- 04d80f8 small speedup for constant and name access see sf #506436 by Skip Montanaro · 22 years ago
- 04e7032 SF patch 552161 - Py_AddPendingCall doesn't unlock on fail (Daniel Dunbar) by Guido van Rossum · 22 years ago
- 0c32279 Removed more stray instances of statichere, but left _sre.c alone. by Tim Peters · 22 years ago
- 938ace6 staticforward bites the dust. by Jeremy Hylton · 22 years ago
- a64295b There's no need for generators to define an explicit next() method. by Tim Peters · 22 years ago
- a81d220 SF patch # 580411, move frame macros from frameobject.h into ceval.c by Neal Norwitz · 22 years ago
- 76c81ee Don't stomp on an exception set by PyCell_Get() by Jeremy Hylton · 22 years ago
- cb4d7ce Now FOR_LOOP is gone, loop_subscript can go too. by Michael W. Hudson · 22 years ago
- fea59e7 The opcode FOR_LOOP no longer exists. by Guido van Rossum · 22 years ago
- c5fe5eb SF bug 567538: Generator can crash the interpreter (Finn Bock). by Guido van Rossum · 22 years ago
- d95c828 Fix for by Michael W. Hudson · 22 years ago
- afb2c80 ceval.c/do_raise(): Tighten the test to disallow raising an instance of by Tim Peters · 23 years ago
- cfbf1a3 Fix an issue that was reported in but unrelated to the main problem of by Guido van Rossum · 23 years ago
- 8e5fd53 SF bug 480215: softspace confused in nested print by Tim Peters · 23 years ago
- c24ea08 Disable the parser hacks that enabled the "yield" keyword using a future by Neil Schemenauer · 23 years ago
- 08de92a Re-enable GC of generator objects. by Neil Schemenauer · 23 years ago
- 6354386 Move some opcodes to top of big eval_frame switch statement. Skip by Neil Schemenauer · 23 years ago
- 373f8d81 LOAD_FAST: rearrange branches to favor the expected case, and get by Tim Peters · 23 years ago
- 7198a52 Patch #494783: Rename cmp_op enumerators. by Martin v. Löwis · 23 years ago
- 54b1191 SF bug #496549 -Qnew and in-place division "/=". by Tim Peters · 23 years ago
- b6d14da SF bug #494668: PUSH() should assert-fail on overflow. by Tim Peters · 23 years ago
- 8d3ce5a Patch #494384: Disable more Unicode API if Unicode is not used. by Martin v. Löwis · 23 years ago
- b519638 _PyEval_SliceIndex(): explain why a NULL argument is allowed (thanks by Tim Peters · 23 years ago
- cb479e7 _PyEval_SliceIndex(): Repaired the comments, and added XXX comments by Tim Peters · 23 years ago
- 733c893 Fix for SF bug [ #492403 ] exec() segfaults on closure's func_code by Jeremy Hylton · 23 years ago
- 35974fb Fix for SF bug #489671 (Neil Norwitz): memory leak in test_richcmp. by Guido van Rossum · 23 years ago
- 2556f2e Fix a typo (probably caused by autocompletion <blush>) that caused a by Guido van Rossum · 23 years ago
- 3caca23 SF bug #488514: -Qnew needs work by Tim Peters · 23 years ago
- 354797c Fix the final two issues in Armin Rigo's SF bug #488477: apply_slice() by Guido van Rossum · 23 years ago
- bb8f59a unpack_iterable(): Add a missing DECREF in an error case. Reported by by Guido van Rossum · 23 years ago
- b13680b SF bug #483469: crash on unbounded recursion in __del__. by Tim Peters · 23 years ago
- 0c4d8d0 Fix for bug #480188: printing unicode objects by Marc-André Lemburg · 23 years ago
- 4962fc8 Backing out the fast path for interned string compares again as requested. by Marc-André Lemburg · 23 years ago
- c52d713 Add fast-path for comparing interned (true) string objects. by Marc-André Lemburg · 23 years ago
- 6e6a63f SF Patch (but with no patch) 472555 Remove trailing common in enumeration. by Tim Peters · 23 years ago
- 1436815 For debug build, check that the stack pointer never exceeds the stack size. by Jeremy Hylton · 23 years ago
- f118cb1 make getarray static - it's only called from ceval.c and is not an by Skip Montanaro · 23 years ago
- de26cfc Suppress a bunch of "value computed is not used" warnings when building in by Fred Drake · 23 years ago
- b1c4698 Introduced the oddly-missing PyList_CheckExact(), and used it to replace by Tim Peters · 23 years ago
- c1e6d96 Get rid of unique local ISSTRICTINT macro in favor of std PyInt_CheckExact. by Tim Peters · 23 years ago
- 4ec5d56 Fix bug in profiler modifications detected only in debug builds. by Fred Drake · 23 years ago
- 8f51f54 Rationalize the events passed to the profiler (no changes for the tracer). by Fred Drake · 23 years ago
- 8b13b3e SF bug [#466173] unpack TypeError unclear by Tim Peters · 23 years ago
- c631489 Prevent a NULL pointer from being pushed onto the stack. by Jeremy Hylton · 23 years ago
- 1ee6422 Don't swap the arguments to PyFrame_BlockSetup when recreating the recently by Thomas Wouters · 23 years ago
- 6f79937 Add optional docstrings to member descriptors. For backwards by Guido van Rossum · 23 years ago
- b9a9628 Admit that we'll never add the args for a "call" event to the profile by Fred Drake · 23 years ago
- 7851eea build_class(): one more (hopefully the last) step on the way to by Guido van Rossum · 23 years ago
- 6c0f200 Move call_trace(..., PyTrace_CALL, ...) call to top of eval_frame. That by Neil Schemenauer · 23 years ago
- 46add98 Do the int inlining only if the type is really an int, not whenever by Guido van Rossum · 23 years ago
- 2f38f81 Removed some unreachable break statements to silence SGI compiler. by Sjoerd Mullender · 23 years ago
- 87780df When an inlined operation on two small ints causes overflow, don't by Guido van Rossum · 23 years ago
- 50d756e Fix SF bug #443600: by Guido van Rossum · 23 years ago
- e2c18e9 ceval, PyEval_MergeCompilerFlags: wasn't merging in the by Tim Peters · 23 years ago
- e3eb1f2 Patch #427190: Implement and use METH_NOARGS and METH_O. by Martin v. Löwis · 23 years ago
- 910d7d4 Remove much dead code from ceval.c by Jeremy Hylton · 23 years ago
- b857ba2 Refactor future feature handling by Jeremy Hylton · 23 years ago
- 4668b00 Implement PEP 238 in its (almost) full glory. by Guido van Rossum · 23 years ago
- 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
- 5ba5866 Part way to allowing "from __future__ import generators" to communicate by Tim Peters · 23 years ago