aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/pythonrun.c
Commit message (Expand)AuthorAge
* PyOS_CheckStack(): Better ANSI'fy this while we're at it.Fred Drake2000-08-31
* Add a comment explaining the return value of PyOS_CheckStack().Fred Drake2000-08-31
* Hard to believe Guido compiled this! Function lacked a return stmt.Tim Peters2000-08-27
* Add three new APIs: PyRun_AnyFileEx(), PyRun_SimpleFileEx(),Guido van Rossum2000-08-27
* implements PyOS_CheckStack for Windows and MSVC. this fixes aFredrik Lundh2000-08-27
* Fix to [ Bug #111165 ] doc-string removal masked by PYTHONOPTIMIZEMarc-André Lemburg2000-08-25
* Remove the osdefs.h #include; it was not needed in the final version ofFred Drake2000-08-15
* When raising a SyntaxError, make a best-effort attempt to set theFred Drake2000-08-15
* Mass ANSIfication of function definitions. Doesn't cover all 'extern'Thomas Wouters2000-07-22
* Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in eitherThomas Wouters2000-07-16
* Include macglue.h for some function prototypes, and renamed a fewJack Jansen2000-07-11
* Create two new exceptions: IndentationError and TabError. These areFred Drake2000-07-11
* Nuke all remaining occurrences of Py_PROTO and Py_FPROTO.Tim Peters2000-07-09
* Change copyright notice - 2nd try.Guido van Rossum2000-06-30
* Change copyright notice.Guido van Rossum2000-06-30
* Add new parser error code, E_OVERFLOW. This error is returned whenJeremy Hylton2000-06-20
* Py_Initialize(): Now that standard exceptions are builtin, we don'tBarry Warsaw2000-05-25
* Vladimir Marangozov's long-awaited malloc restructuring.Guido van Rossum2000-05-03
* Py_UseClassExceptionsFlag is deprecated. We keep the C variable for CBarry Warsaw2000-05-02
* Marc-Andre Lemburg:Guido van Rossum2000-05-01
* Mark Hammond: For Windows debug builds, we now only offer to dumpGuido van Rossum2000-04-27
* Fix PR#7 comparisons of recursive objectsJeremy Hylton2000-04-14
* Marc-Andre Lemburg: add calls to initialize and finalize Unicode andGuido van Rossum2000-03-10
* The rest of the changes by Trent Mick and Dale Nagata for warning-freeGuido van Rossum2000-01-20
* 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