| Commit message (Expand) | Author | Age | Files | Lines |
* | The rest of the changes by Trent Mick and Dale Nagata for warning-free | Guido van Rossum | 2000-01-20 | 1 | -0/+4 |
|
|
* | Marc-Andre Lemburg discovered that the switch from .pyc to .pyo files, | Guido van Rossum | 1999-07-08 | 1 | -2/+2 |
|
|
* | Alas, get rid of the Win specific hack to ask the user to press Return | Guido van Rossum | 1999-04-07 | 1 | -47/+0 |
|
|
* | initmain(): Nailed a memory leak. bimod must be DECREF'd! | Barry Warsaw | 1999-01-29 | 1 | -0/+1 |
|
|
* | err_input(): Nailed a small memory leak. If the error is E_INTR, the | Barry Warsaw | 1999-01-27 | 1 | -1/+2 |
|
|
* | Hack for Windows so that if (1) the exit status is nonzero and (2) we | Guido van Rossum | 1999-01-08 | 1 | -0/+47 |
|
|
* | Move the prototype for dump_counts() to before where it is used. | Guido van Rossum | 1998-12-15 | 1 | -4/+4 |
|
|
* | Support PYTHONOPTIMIZE variable; by Marc Lemburg. | Guido van Rossum | 1998-10-07 | 1 | -0/+2 |
|
|
* | Renamed thread.h to pythread.h. | Guido van Rossum | 1998-10-01 | 1 | -1/+1 |
|
|
* | On second though, NEXITFUNCS should be defined here and not in | Guido van Rossum | 1998-10-01 | 1 | -1/+1 |
|
|
* | Remove redundant definition of NEXITFUNCS. | Guido van Rossum | 1998-09-28 | 1 | -1/+1 |
|
|
* | Don't release the interpreter lock around PyParser_ParseFile(). | Guido van Rossum | 1998-08-27 | 1 | -4/+0 |
|
|
* | Add DebugBreak() call to Py_FatalError() for Mark Hammond (only on | Guido van Rossum | 1998-08-13 | 1 | -0/+3 |
|
|
* | Translate E_INDENT to the clearest error message I can think of. | Guido van Rossum | 1998-04-10 | 1 | -0/+3 |
|
|
* | Make sure that the message "Error in sys.exitfunc:" goes to sys.stderr | Guido van Rossum | 1998-04-03 | 1 | -2/+4 |
|
|
* | Fix the handling of errors in Py_FlushLine() in a few places. | Guido van Rossum | 1998-02-28 | 1 | -5/+7 |
|
|
* | Ehm, three unrelated changes. | Guido van Rossum | 1998-02-06 | 1 | -3/+31 |
|
|
* | It seems obvious that when Py_Finalize() decides that there's nothing | Guido van Rossum | 1998-01-19 | 1 | -2/+2 |
|
|
* | Changed the finalization order again so that the reference count | Guido van Rossum | 1997-12-08 | 1 | -13/+18 |
|
|
* | Apply str() to sys.ps1 or sys.ps2 before using them as a prompt, so | Guido van Rossum | 1997-11-25 | 1 | -16/+14 |
|
|
* | Two changes (here we go again :-( ). | Guido van Rossum | 1997-11-19 | 1 | -35/+3 |
|
|
* | Undo half of the previous change :-( | Guido van Rossum | 1997-11-04 | 1 | -7/+6 |
|
|
* | Two independent changes (alas): | Guido van Rossum | 1997-11-03 | 1 | -19/+16 |
|
|
* | Initialize Py_UseClassExceptionsFlag to 1. | Guido van Rossum | 1997-10-03 | 1 | -1/+1 |
|
|
* | Fix small omission: with all the new code, sys.exit(None) would print | Guido van Rossum | 1997-10-03 | 1 | -0/+2 |
|
|
* | Py_Initialize(): move the call to _PyImport_FixupExtension() to after | Barry Warsaw | 1997-09-18 | 1 | -1/+1 |
|
|
* | PyErr_Print(): When printing a class exception, try to dig out the | Barry Warsaw | 1997-09-16 | 1 | -6/+21 |
|
|
* | Fixed some details of printing the str() of an exception. This fixes | Guido van Rossum | 1997-09-05 | 1 | -2/+6 |
|
|
* | Two independent changes (oops): | Guido van Rossum | 1997-08-29 | 1 | -4/+35 |
|
|
* | Added Py_UseClassExceptionsFlag, the variable containing the state of | Barry Warsaw | 1997-08-29 | 1 | -5/+106 |
|
|
* | PyErr_Print(): Use PyErr_GivenExceptionMatches() instead of pointer | Barry Warsaw | 1997-08-26 | 1 | -2/+4 |
|
|
* | Added new Py_IsInitalized() API function to test the 'initialized' flag. | Guido van Rossum | 1997-08-22 | 1 | -0/+8 |
|
|
* | Use a counter instead of a Boolean to check for initialized; n calls | Guido van Rossum | 1997-08-20 | 1 | -5/+5 |
|
|
* | Merge Py_Cleanup() into Py_Finalize(). Call the various small Fini() | Guido van Rossum | 1997-08-05 | 1 | -36/+43 |
|
|
* | The last of the mass checkins for separate (sub)interpreters. | Guido van Rossum | 1997-08-02 | 1 | -59/+193 |
|
|
* | Moved some stuff here from main.c (part of a big restructuring - wait | Guido van Rossum | 1997-07-19 | 1 | -1/+26 |
|
|
* | Can't return 0 from void function... | Guido van Rossum | 1997-05-23 | 1 | -1/+1 |
|
|
* | Py_FlushLine and PyFile_WriteString now return error indicators | Guido van Rossum | 1997-05-22 | 1 | -30/+41 |
|
|
* | Added a space in an error message | Guido van Rossum | 1997-05-22 | 1 | -1/+1 |
|
|
* | Instead of importing graminit.h whenever one of the three grammar 'root' | Guido van Rossum | 1997-05-07 | 1 | -4/+3 |
|
|
* | Keep MS compiler happy: use (int)strlen() when comparing; make sure | Guido van Rossum | 1997-05-06 | 1 | -2/+8 |
|
|
* | Massive changes for separate thread state management. | Guido van Rossum | 1997-05-05 | 1 | -8/+42 |
|
|
* | Allow passing a .pyo file. | Guido van Rossum | 1997-04-02 | 1 | -5/+8 |
|
|
* | Greatly renamed. Not a very thorough job -- I'm going to restructure | Guido van Rossum | 1997-03-05 | 1 | -210/+211 |
|
|
* | Added new global flag variable Py_InteractiveFlag and new function | Guido van Rossum | 1997-02-14 | 1 | -1/+22 |
|
|
* | Keep gcc -Wall happy. | Guido van Rossum | 1996-12-05 | 1 | -0/+4 |
|
|
* | New permission notice, includes CNRI. | Guido van Rossum | 1996-10-25 | 1 | -13/+20 |
|
|
* | Rationalized MS ifdefs | Guido van Rossum | 1996-09-11 | 1 | -2/+2 |
|
|
* | rename printrefs, getobjects to _Py_ prefix | Guido van Rossum | 1996-05-24 | 1 | -1/+1 |
|
|
* | Use new names for debug macros. Don't include pythonrun.h. | Guido van Rossum | 1996-05-22 | 1 | -6/+5 |
|
|