summaryrefslogtreecommitdiffstats
path: root/Python/pythonrun.c
Commit message (Expand)AuthorAgeFilesLines
* Patch #445762: Support --disable-unicodeMartin v. Löwis2001-08-171-0/+4
* Oops. Two fixes for SF bug #422004 are not needed. :-)Guido van Rossum2001-08-161-1/+0
* Bunchathings:Guido van Rossum2001-08-161-5/+6
* Py_Initialize(): Apply patch by Jürgen Hermann to callBarry Warsaw2001-08-131-0/+1
* Refactor future feature handlingJeremy Hylton2001-08-101-17/+7
* Apply SF patch #424554: check for PYTHONDUMPREFS to be set instead ofGuido van Rossum2001-08-091-5/+1
* - Rename PyType_InitDict() to PyType_Ready().Guido van Rossum2001-08-071-1/+4
* Merge of descr-branch back into trunk.Tim Peters2001-08-021-3/+6
* Add -E command line switch (ignore environment variables like PYTHONHOMENeil Schemenauer2001-07-231-6/+7
* PyRun_StringFlags(): forgot to pass the flags on toGuido van Rossum2001-07-161-1/+4
* Ugly. A pile of new xxxFlags() functions, to communicate to the parserTim Peters2001-07-161-9/+30
* future.c: insert a cosmetic space.Tim Peters2001-07-161-1/+1
* Part way to allowing "from __future__ import generators" to communicateTim Peters2001-07-161-3/+7
* Temporarily disable the message to stderr. Jeremy will know what to doMarc-André Lemburg2001-06-131-1/+3
* Bug fix: compile() called from a nested-scopes-enable Python was notJeremy Hylton2001-03-261-1/+1
* Finishing touch to Ping's changes. This is a patch that Ping sent meGuido van Rossum2001-03-231-11/+11
* call_sys_exitfunc(): Remove unused variable f.Fred Drake2001-03-231-1/+1
* Allow sys.excepthook and sys.exitfunc to quietly exit with a sys.exit().Ka-Ping Yee2001-03-231-32/+37
* Fix memory leak with SyntaxError. (The DECREF was originally hiddenGuido van Rossum2001-03-231-0/+1
* Add sys.excepthook.Ka-Ping Yee2001-03-231-9/+36
* Extend support for from __future__ import nested_scopesJeremy Hylton2001-03-221-12/+82
* Useful future statement support for the interactive interpreterJeremy Hylton2001-03-011-15/+25
* Now that Jeremy is asking about this code, it looks really bogus to me,Fred Drake2001-02-281-18/+0
* Print the offending line of code in the traceback for SyntaxErrorsJeremy Hylton2001-02-281-36/+48
* Bug #132850 unix line terminator on windows.Tim Peters2001-02-171-10/+14
* Ugly fix for SF bug 131239 (-x flag busted).Tim Peters2001-02-111-4/+15
* Move a bunch of definitions that were internal to compile.c toJeremy Hylton2001-02-021-0/+14
* It's unclear whether PyMarshal_XXX() are part of the public or private API.Tim Peters2001-01-281-1/+1
* Bug #128475: mimetools.encode (sometimes) fails when called from a thread.Tim Peters2001-01-211-1/+10
* Get rid of the initialization of _PyCompareState_Key.Guido van Rossum2001-01-171-2/+0
* Fix signed/unsigned wng. Unfortunately, (unsigned char) << intTim Peters2001-01-051-2/+2
* Recognize pyc files even if they don't end in pyc.Martin v. Löwis2001-01-041-7/+33
* Add PyOS_getsig() and PyOS_setsig() -- wrappers around signal() orGuido van Rossum2000-09-161-0/+34
* REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum2000-09-011-9/+0
* PyOS_CheckStack(): Better ANSI'fy this while we're at it.Fred Drake2000-08-311-1/+1
* Add a comment explaining the return value of PyOS_CheckStack().Fred Drake2000-08-311-1/+4
* Hard to believe Guido compiled this! Function lacked a return stmt.Tim Peters2000-08-271-1/+1
* Add three new APIs: PyRun_AnyFileEx(), PyRun_SimpleFileEx(),Guido van Rossum2000-08-271-7/+33
* implements PyOS_CheckStack for Windows and MSVC. this fixes aFredrik Lundh2000-08-271-0/+29
* Fix to [ Bug #111165 ] doc-string removal masked by PYTHONOPTIMIZEMarc-André Lemburg2000-08-251-3/+3
* Remove the osdefs.h #include; it was not needed in the final version ofFred Drake2000-08-151-1/+0
* When raising a SyntaxError, make a best-effort attempt to set theFred Drake2000-08-151-1/+19
* Mass ANSIfication of function definitions. Doesn't cover all 'extern'Thomas Wouters2000-07-221-94/+45
* Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in eitherThomas Wouters2000-07-161-1/+1
* Include macglue.h for some function prototypes, and renamed a fewJack Jansen2000-07-111-2/+5
* Create two new exceptions: IndentationError and TabError. These areFred Drake2000-07-111-4/+25
* Nuke all remaining occurrences of Py_PROTO and Py_FPROTO.Tim Peters2000-07-091-14/+14
* Change copyright notice - 2nd try.Guido van Rossum2000-06-301-6/+0
* Change copyright notice.Guido van Rossum2000-06-301-22/+7
* Add new parser error code, E_OVERFLOW. This error is returned whenJeremy Hylton2000-06-201-0/+3