summaryrefslogtreecommitdiffstats
path: root/Python/pythonrun.c
Commit message (Expand)AuthorAgeFilesLines
* Added missing casts.Jack Jansen2002-12-131-2/+2
* Constify filenames and scripts. Fixes #651362.Martin v. Löwis2002-12-111-41/+41
* Remove _Py_ResetReferences. Fixes bug #529750 "Circular reference makesNeil Schemenauer2002-11-171-4/+0
* If we have a filename and __main__.__file__ hasn't already been set,Fred Drake2002-10-171-1/+11
* s/_alloca/alloca/g; Windows doesn't need the former, at least not unlessTim Peters2002-10-051-2/+2
* provide less mysterious error messages when seeing end-of-line inSkip Montanaro2002-08-151-0/+6
* Patch #534304: Implement phase 1 of PEP 263.Martin v. Löwis2002-08-041-0/+13
* _Py_AskYesNo(): Removed this function. It was defined only in aTim Peters2002-07-091-20/+0
* Fix SF Bug 564931: compile() traceback must include filename.Thomas Heller2002-07-091-2/+27
* The Py_REF_DEBUG/COUNT_ALLOCS/Py_TRACE_REFS macro minefield: addedTim Peters2002-07-091-1/+1
* Patch #569753: Remove support for WIN16.Martin v. Löwis2002-06-301-3/+3
* Ignore SIGXFSZ.Jeremy Hylton2002-04-231-0/+3
* _PyObject_DebugDumpStats: renamed to _PyObject_DebugMallocStats.Tim Peters2002-04-131-0/+5
* Move Unicode finalization further down in the chain.Marc-André Lemburg2002-04-081-5/+5
* Get rid of another use of PyArg_Parse()Neal Norwitz2002-04-011-2/+2
* Disable the parser hacks that enabled the "yield" keyword using a futureNeil Schemenauer2002-03-221-11/+13
* Patch #50002: Display line information for bad \x escapes:Martin v. Löwis2002-03-031-1/+1
* Include <unistd.h> in Python.h. Fixes #500924.Martin v. Löwis2002-01-121-4/+0
* Missing DECREFs when exception is raised in sys.excepthook.Jeremy Hylton2001-12-071-0/+3
* SF bug #488514: -Qnew needs workTim Peters2001-12-061-0/+4
* Use PyOS_snprintf instead of sprintf.Jeremy Hylton2001-11-281-1/+1
* PyOS_getsig(), PyOS_setsig(): The minimal amount of work to avoid theBarry Warsaw2001-11-131-0/+12
* SF patch #467455 : Enhanced environment variables, by Toby Dickenson.Guido van Rossum2001-10-121-3/+14
* Add warning mode for classic division, almost exactly as specified inGuido van Rossum2001-08-311-1/+7
* 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