aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/pythonrun.c
Commit message (Expand)AuthorAge
* Patch #445762: Support --disable-unicodeMartin v. Löwis2001-08-17
* Oops. Two fixes for SF bug #422004 are not needed. :-)Guido van Rossum2001-08-16
* Bunchathings:Guido van Rossum2001-08-16
* Py_Initialize(): Apply patch by Jürgen Hermann to callBarry Warsaw2001-08-13
* Refactor future feature handlingJeremy Hylton2001-08-10
* Apply SF patch #424554: check for PYTHONDUMPREFS to be set instead ofGuido van Rossum2001-08-09
* - Rename PyType_InitDict() to PyType_Ready().Guido van Rossum2001-08-07
* Merge of descr-branch back into trunk.Tim Peters2001-08-02
* Add -E command line switch (ignore environment variables like PYTHONHOMENeil Schemenauer2001-07-23
* PyRun_StringFlags(): forgot to pass the flags on toGuido van Rossum2001-07-16
* Ugly. A pile of new xxxFlags() functions, to communicate to the parserTim Peters2001-07-16
* future.c: insert a cosmetic space.Tim Peters2001-07-16
* Part way to allowing "from __future__ import generators" to communicateTim Peters2001-07-16
* Temporarily disable the message to stderr. Jeremy will know what to doMarc-André Lemburg2001-06-13
* Bug fix: compile() called from a nested-scopes-enable Python was notJeremy Hylton2001-03-26
* Finishing touch to Ping's changes. This is a patch that Ping sent meGuido van Rossum2001-03-23
* call_sys_exitfunc(): Remove unused variable f.Fred Drake2001-03-23
* Allow sys.excepthook and sys.exitfunc to quietly exit with a sys.exit().Ka-Ping Yee2001-03-23
* Fix memory leak with SyntaxError. (The DECREF was originally hiddenGuido van Rossum2001-03-23
* Add sys.excepthook.Ka-Ping Yee2001-03-23
* Extend support for from __future__ import nested_scopesJeremy Hylton2001-03-22
* Useful future statement support for the interactive interpreterJeremy Hylton2001-03-01
* Now that Jeremy is asking about this code, it looks really bogus to me,Fred Drake2001-02-28
* Print the offending line of code in the traceback for SyntaxErrorsJeremy Hylton2001-02-28
* Bug #132850 unix line terminator on windows.Tim Peters2001-02-17
* Ugly fix for SF bug 131239 (-x flag busted).Tim Peters2001-02-11
* Move a bunch of definitions that were internal to compile.c toJeremy Hylton2001-02-02
* It's unclear whether PyMarshal_XXX() are part of the public or private API.Tim Peters2001-01-28
* Bug #128475: mimetools.encode (sometimes) fails when called from a thread.Tim Peters2001-01-21
* Get rid of the initialization of _PyCompareState_Key.Guido van Rossum2001-01-17
* Fix signed/unsigned wng. Unfortunately, (unsigned char) << intTim Peters2001-01-05
* Recognize pyc files even if they don't end in pyc.Martin v. Löwis2001-01-04
* Add PyOS_getsig() and PyOS_setsig() -- wrappers around signal() orGuido van Rossum2000-09-16
* REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum2000-09-01
* 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