aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/pythonrun.c
Commit message (Expand)AuthorAge
* Marc-Andre Lemburg discovered that the switch from .pyc to .pyo files,Guido van Rossum1999-07-08
* Alas, get rid of the Win specific hack to ask the user to press ReturnGuido van Rossum1999-04-07
* initmain(): Nailed a memory leak. bimod must be DECREF'd!Barry Warsaw1999-01-29
* err_input(): Nailed a small memory leak. If the error is E_INTR, theBarry Warsaw1999-01-27
* Hack for Windows so that if (1) the exit status is nonzero and (2) weGuido van Rossum1999-01-08
* Move the prototype for dump_counts() to before where it is used.Guido van Rossum1998-12-15
* Support PYTHONOPTIMIZE variable; by Marc Lemburg.Guido van Rossum1998-10-07
* Renamed thread.h to pythread.h.Guido van Rossum1998-10-01
* On second though, NEXITFUNCS should be defined here and not inGuido van Rossum1998-10-01
* Remove redundant definition of NEXITFUNCS.Guido van Rossum1998-09-28
* Don't release the interpreter lock around PyParser_ParseFile().Guido van Rossum1998-08-27
* Add DebugBreak() call to Py_FatalError() for Mark Hammond (only onGuido van Rossum1998-08-13
* Translate E_INDENT to the clearest error message I can think of.Guido van Rossum1998-04-10
* Make sure that the message "Error in sys.exitfunc:" goes to sys.stderrGuido van Rossum1998-04-03
* Fix the handling of errors in Py_FlushLine() in a few places.Guido van Rossum1998-02-28
* Ehm, three unrelated changes.Guido van Rossum1998-02-06
* It seems obvious that when Py_Finalize() decides that there's nothingGuido van Rossum1998-01-19
* Changed the finalization order again so that the reference countGuido van Rossum1997-12-08
* Apply str() to sys.ps1 or sys.ps2 before using them as a prompt, soGuido van Rossum1997-11-25
* Two changes (here we go again :-( ).Guido van Rossum1997-11-19
* Undo half of the previous change :-(Guido van Rossum1997-11-04
* Two independent changes (alas):Guido van Rossum1997-11-03
* Initialize Py_UseClassExceptionsFlag to 1.Guido van Rossum1997-10-03
* Fix small omission: with all the new code, sys.exit(None) would printGuido van Rossum1997-10-03
* Py_Initialize(): move the call to _PyImport_FixupExtension() to afterBarry Warsaw1997-09-18
* PyErr_Print(): When printing a class exception, try to dig out theBarry Warsaw1997-09-16
* Fixed some details of printing the str() of an exception. This fixesGuido van Rossum1997-09-05
* Two independent changes (oops):Guido van Rossum1997-08-29
* Added Py_UseClassExceptionsFlag, the variable containing the state ofBarry Warsaw1997-08-29
* PyErr_Print(): Use PyErr_GivenExceptionMatches() instead of pointerBarry Warsaw1997-08-26
* Added new Py_IsInitalized() API function to test the 'initialized' flag.Guido van Rossum1997-08-22
* Use a counter instead of a Boolean to check for initialized; n callsGuido van Rossum1997-08-20
* Merge Py_Cleanup() into Py_Finalize(). Call the various small Fini()Guido van Rossum1997-08-05
* The last of the mass checkins for separate (sub)interpreters.Guido van Rossum1997-08-02
* Moved some stuff here from main.c (part of a big restructuring - waitGuido van Rossum1997-07-19
* Can't return 0 from void function...Guido van Rossum1997-05-23
* Py_FlushLine and PyFile_WriteString now return error indicatorsGuido van Rossum1997-05-22
* Added a space in an error messageGuido van Rossum1997-05-22
* Instead of importing graminit.h whenever one of the three grammar 'root'Guido van Rossum1997-05-07
* Keep MS compiler happy: use (int)strlen() when comparing; make sureGuido van Rossum1997-05-06
* Massive changes for separate thread state management.Guido van Rossum1997-05-05
* Allow passing a .pyo file.Guido van Rossum1997-04-02
* Greatly renamed. Not a very thorough job -- I'm going to restructureGuido van Rossum1997-03-05
* Added new global flag variable Py_InteractiveFlag and new functionGuido van Rossum1997-02-14
* Keep gcc -Wall happy.Guido van Rossum1996-12-05
* New permission notice, includes CNRI.Guido van Rossum1996-10-25
* Rationalized MS ifdefsGuido van Rossum1996-09-11
* rename printrefs, getobjects to _Py_ prefixGuido van Rossum1996-05-24
* Use new names for debug macros. Don't include pythonrun.h.Guido van Rossum1996-05-22
* Add'l change for NT (Mark H.).Guido van Rossum1996-04-09