| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix for the recursion_level bug Armin Rigo reported in sf | Michael W. Hudson | 2002-10-02 | 1 | -0/+4 |
|
|
* | A slight change to SET_LINENO-less tracing. | Michael W. Hudson | 2002-09-11 | 1 | -5/+18 |
|
|
* | Bump default check interval to 100 instructions. Computers are much faster | Skip Montanaro | 2002-09-03 | 1 | -2/+2 |
|
|
* | replace thread state objects' ticker and checkinterval fields with two | Skip Montanaro | 2002-09-03 | 1 | -2/+8 |
|
|
* | Further SET_LINENO reomval fixes. See comments in patch #587933. | Michael W. Hudson | 2002-08-30 | 1 | -34/+20 |
|
|
* | The error messages in err_args() -- which is only called when the | Guido van Rossum | 2002-08-23 | 1 | -2/+2 |
|
|
* | Comment typo repair. | Michael W. Hudson | 2002-08-20 | 1 | -1/+1 |
|
|
* | My patch #597221. Use f_lasti more consistently. | Michael W. Hudson | 2002-08-20 | 1 | -9/+9 |
|
|
* | Add a warning comment to the LOAD_GLOBAL inline code. | Guido van Rossum | 2002-08-19 | 1 | -1/+3 |
|
|
* | Another ugly inlining hack, expanding the two PyDict_GetItem() calls | Guido van Rossum | 2002-08-19 | 1 | -1/+25 |
|
|
* | Inline fast_cfunction() in new call_function(). | Jeremy Hylton | 2002-08-16 | 1 | -55/+33 |
|
|
* | Move body of CALL_FUNCTION opcode into helper function. | Jeremy Hylton | 2002-08-16 | 1 | -54/+56 |
|
|
* | Streamline the fast track for CFunction calls a bit more: there was | Guido van Rossum | 2002-08-16 | 1 | -5/+2 |
|
|
* | This is my patch | Michael W. Hudson | 2002-08-15 | 1 | -36/+167 |
|
|
* | Add weakref support generator-iterators. | Fred Drake | 2002-08-09 | 1 | -1/+7 |
|
|
* | get rid of GETNAMEV macro - use GETITEM directly | Skip Montanaro | 2002-08-06 | 1 | -12/+11 |
|
|
* | small speedup for constant and name access | Skip Montanaro | 2002-08-04 | 1 | -3/+6 |
|
|
* | SF patch 552161 - Py_AddPendingCall doesn't unlock on fail (Daniel | Guido van Rossum | 2002-07-17 | 1 | -1/+3 |
|
|
* | Removed more stray instances of statichere, but left _sre.c alone. | Tim Peters | 2002-07-17 | 1 | -1/+1 |
|
|
* | staticforward bites the dust. | Jeremy Hylton | 2002-07-17 | 1 | -1/+1 |
|
|
* | There's no need for generators to define an explicit next() method. | Tim Peters | 2002-07-17 | 1 | -22/+1 |
|
|
* | SF patch # 580411, move frame macros from frameobject.h into ceval.c | Neal Norwitz | 2002-07-14 | 1 | -3/+10 |
|
|
* | Don't stomp on an exception set by PyCell_Get() | Jeremy Hylton | 2002-07-11 | 1 | -1/+4 |
|
|
* | Now FOR_LOOP is gone, loop_subscript can go too. | Michael W. Hudson | 2002-06-14 | 1 | -19/+0 |
|
|
* | The opcode FOR_LOOP no longer exists. | Guido van Rossum | 2002-06-13 | 1 | -31/+0 |
|
|
* | SF bug 567538: Generator can crash the interpreter (Finn Bock). | Guido van Rossum | 2002-06-12 | 1 | -2/+2 |
|
|
* | Fix for | Michael W. Hudson | 2002-05-20 | 1 | -1/+1 |
|
|
* | ceval.c/do_raise(): Tighten the test to disallow raising an instance of | Tim Peters | 2002-04-18 | 1 | -1/+4 |
|
|
* | Fix an issue that was reported in but unrelated to the main problem of | Guido van Rossum | 2002-03-28 | 1 | -2/+10 |
|
|
* | SF bug 480215: softspace confused in nested print | Tim Peters | 2002-03-24 | 1 | -10/+12 |
|
|
* | Disable the parser hacks that enabled the "yield" keyword using a future | Neil Schemenauer | 2002-03-22 | 1 | -0/+2 |
|
|
* | Re-enable GC of generator objects. | Neil Schemenauer | 2002-03-18 | 1 | -6/+6 |
|
|
* | Move some opcodes to top of big eval_frame switch statement. Skip | Neil Schemenauer | 2002-02-17 | 1 | -44/+45 |
|
|
* | LOAD_FAST: rearrange branches to favor the expected case, and get | Tim Peters | 2002-02-12 | 1 | -10/+7 |
|
|
* | Patch #494783: Rename cmp_op enumerators. | Martin v. Löwis | 2002-01-01 | 1 | -15/+19 |
|
|
* | SF bug #496549 -Qnew and in-place division "/=". | Tim Peters | 2001-12-25 | 1 | -11/+14 |
|
|
* | SF bug #494668: PUSH() should assert-fail on overflow. | Tim Peters | 2001-12-19 | 1 | -2/+4 |
|
|
* | Patch #494384: Disable more Unicode API if Unicode is not used. | Martin v. Löwis | 2001-12-18 | 1 | -0/+2 |
|
|
* | _PyEval_SliceIndex(): explain why a NULL argument is allowed (thanks | Tim Peters | 2001-12-16 | 1 | -4/+4 |
|
|
* | _PyEval_SliceIndex(): Repaired the comments, and added XXX comments | Tim Peters | 2001-12-16 | 1 | -6/+11 |
|
|
* | Fix for SF bug [ #492403 ] exec() segfaults on closure's func_code | Jeremy Hylton | 2001-12-13 | 1 | -1/+6 |
|
|
* | Fix for SF bug #489671 (Neil Norwitz): memory leak in test_richcmp. | Guido van Rossum | 2001-12-06 | 1 | -0/+8 |
|
|
* | Fix a typo (probably caused by autocompletion <blush>) that caused a | Guido van Rossum | 2001-12-06 | 1 | -1/+1 |
|
|
* | SF bug #488514: -Qnew needs work | Tim Peters | 2001-12-06 | 1 | -11/+14 |
|
|
* | Fix the final two issues in Armin Rigo's SF bug #488477: apply_slice() | Guido van Rossum | 2001-12-03 | 1 | -4/+10 |
|
|
* | unpack_iterable(): Add a missing DECREF in an error case. Reported by | Guido van Rossum | 2001-12-03 | 1 | -0/+1 |
|
|
* | SF bug #483469: crash on unbounded recursion in __del__. | Tim Peters | 2001-11-27 | 1 | -0/+8 |
|
|
* | Fix for bug #480188: printing unicode objects | Marc-André Lemburg | 2001-11-20 | 1 | -3/+13 |
|
|
* | Backing out the fast path for interned string compares again as requested. | Marc-André Lemburg | 2001-11-08 | 1 | -15/+0 |
|
|
* | Add fast-path for comparing interned (true) string objects. | Marc-André Lemburg | 2001-11-07 | 1 | -0/+15 |
|
|