| Commit message (Expand) | Author | Age | Files | Lines |
| * | New form of PyFPE_END_PROTECT macro. | Guido van Rossum | 1997-03-14 | 3 | -6/+6 |
| * | Fix dumb bug calling parsestrplus with wrong node as argument. | Guido van Rossum | 1997-03-11 | 1 | -1/+3 |
| * | Define __debug__ as 0 if -O is given, 1 otherwise. Also test for | Guido van Rossum | 1997-03-11 | 1 | -0/+4 |
| * | Added support for ``if __debug__:'' -- if -O is given, this form is | Guido van Rossum | 1997-03-11 | 1 | -2/+90 |
| * | When -O is given, use ".pyo" instead of ".pyc". | Guido van Rossum | 1997-03-11 | 1 | -1/+9 |
| * | Clarify error message for unexpected keyword parameter. | Guido van Rossum | 1997-03-10 | 1 | -1/+4 |
| * | Greatly renamed. Not a very thorough job -- I'm going to restructure | Guido van Rossum | 1997-03-05 | 1 | -210/+211 |
| * | Add global Py_OptimizeFlag. SET_LINENO is omitted again unless this is | Guido van Rossum | 1997-03-03 | 1 | -4/+7 |
| * | Changes for Lee Busby's SIGFPE patch set. | Guido van Rossum | 1997-02-14 | 5 | -4/+38 |
| * | Keep gcc -Wall happy. | Guido van Rossum | 1997-02-14 | 1 | -1/+1 |
| * | Oops, remove an unused variable from PyErr_Format(). | Guido van Rossum | 1997-02-14 | 1 | -1/+0 |
| * | Added new global flag variable Py_InteractiveFlag and new function | Guido van Rossum | 1997-02-14 | 1 | -1/+22 |
| * | Added convenience function PyErr_Format(exception, formatstring, ...) -> NULL. | Guido van Rossum | 1997-02-14 | 1 | -0/+27 |
| * | *Don't* kill all local variables on function exit. This will be done | Guido van Rossum | 1997-02-14 | 1 | -12/+0 |
| * | Added intern() function. | Guido van Rossum | 1997-02-14 | 1 | -0/+14 |
| * | Two small changes: | Guido van Rossum | 1997-01-27 | 1 | -5/+3 |
| * | Plug a leak with calling something other than a function or method is | Guido van Rossum | 1997-01-27 | 1 | -4/+3 |
| * | Patches for (two forms of) optional dynamic execution profiling -- | Guido van Rossum | 1997-01-24 | 1 | -0/+68 |
| * | Change the control flow for error handling in the function prelude to | Guido van Rossum | 1997-01-24 | 1 | -23/+17 |
| * | Added optional interface for dynamic execution profile (to be gathered | Guido van Rossum | 1997-01-24 | 1 | -2/+11 |
| * | Get the line number from PyCode_Addr2Line instead of believing | Guido van Rossum | 1997-01-24 | 1 | -1/+4 |
| * | New magin number (because of linenumber table). | Guido van Rossum | 1997-01-24 | 1 | -1/+1 |
| * | Marshal the line number table of code objects. | Guido van Rossum | 1997-01-24 | 1 | -1/+9 |
| * | Instead of emitting SET_LINENO instructions, generate a line number | Guido van Rossum | 1997-01-24 | 1 | -6/+102 |
| * | Kill all local variables on function return. This closes a gigantic | Guido van Rossum | 1997-01-21 | 1 | -0/+12 |
| * | Only call sigcheck() at the ticker code if we don't have true signals. | Guido van Rossum | 1997-01-21 | 1 | -2/+6 |
| * | Cleanup: | Guido van Rossum | 1997-01-21 | 1 | -222/+10 |
| * | get build info from elsewhere | Guido van Rossum | 1997-01-20 | 1 | -9/+2 |
| * | Changes for frame object speedup: | Guido van Rossum | 1997-01-20 | 1 | -14/+2 |
| * | Remove unused variable. | Guido van Rossum | 1997-01-18 | 1 | -1/+0 |
| * | Intern the string "__complex__". | Guido van Rossum | 1997-01-18 | 1 | -1/+1 |
| * | Intern all names and varnames in newcodeobject(), plus those string | Guido van Rossum | 1997-01-18 | 1 | -7/+22 |
| * | Add "if (x != NULL) continue;" (or similar for err==0) before the | Guido van Rossum | 1997-01-18 | 1 | -18/+60 |
| * | Marshal the new stacksize item in code objects. | Guido van Rossum | 1997-01-17 | 1 | -1/+3 |
| * | Working semaphore implementation by Sjoerd. | Guido van Rossum | 1997-01-17 | 1 | -3/+64 |
| * | New MAGIC number (code objects have one more item when marshalled). | Guido van Rossum | 1997-01-17 | 1 | -1/+2 |
| * | Use the stack size from the code object and the CO_MAXBLOCKS constant | Guido van Rossum | 1997-01-17 | 1 | -2/+10 |
| * | Add co_stacksize field to codeobject structure, and stacksize argument | Guido van Rossum | 1997-01-17 | 1 | -62/+253 |
| * | Check for duplicate keyword arguments at compile time. | Guido van Rossum | 1997-01-06 | 1 | -12/+20 |
| * | Make builtin_module_names a tuple instead of a list. | Guido van Rossum | 1997-01-06 | 1 | -0/+5 |
| * | Rename DEBUG macro to Py_DEBUG | Guido van Rossum | 1996-12-30 | 3 | -9/+9 |
| * | Moved the raise logic out of the main interpreter loop to a separate function. | Guido van Rossum | 1996-12-10 | 1 | -60/+127 |
| * | Better way to handle 64-bit ints, keeping gcc -Wall happy. | Guido van Rossum | 1996-12-10 | 1 | -30/+18 |
| * | Add unistd.h to make gcc -Wall happy. | Guido van Rossum | 1996-12-10 | 1 | -0/+4 |
| * | Add const to error and newstring functions | Guido van Rossum | 1996-12-10 | 1 | -1/+1 |
| * | Keep gcc -Wall happy. | Guido van Rossum | 1996-12-05 | 6 | -28/+38 |
| * | Support __complex__ method on instances, for complex() conversion. | Guido van Rossum | 1996-12-05 | 1 | -1/+23 |
| * | Change the Don Beaudry hack into the Don B + Jim F hack; now, if *any* | Guido van Rossum | 1996-12-05 | 1 | -28/+26 |
| * | Some extra flags that an HPUX user wants me to add. | Guido van Rossum | 1996-12-05 | 1 | -2/+2 |
| * | Tentative changes to make this work better on 64-bit machines. | Guido van Rossum | 1996-12-05 | 1 | -3/+66 |