summaryrefslogtreecommitdiff
path: root/Modules/main.c
Commit message (Expand)AuthorAgeFilesLines
* Revert r80580 due to some unintended side effects. See issue #8202 for details.Nick Coghlan2010-06-131-3/+5
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-474/+474
* Issue 8202: when using the -m command line switch, sys.argv[0] is now '-m' in...Nick Coghlan2010-04-281-2/+2
* fix PYTHONWARNINGS handling to not modify the original env value and improvePhilip Jenvey2010-04-101-7/+12
* #7301: add the environment variable $PYTHONWARNINGS to supplement the -WPhilip Jenvey2010-04-061-0/+11
* Issue #3137: Don't ignore errors at startup, especially a keyboard interruptVictor Stinner2010-03-101-4/+10
* Issue #1722344: threading._shutdown() is now called in Py_Finalize(), whichAntoine Pitrou2009-10-201-29/+0
* Fix GCC warning about fprintf used without a string literal andAlexandre Vassalotti2009-07-171-3/+3
* #5704: let python -3 imply -t as well.Georg Brandl2009-04-121-0/+4
* Py3k warnings now automatically include -Qwarn for division.Raymond Hettinger2009-02-181-0/+2
* be more specific in -3 option helpBenjamin Peterson2009-01-091-1/+1
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-1/+1
* New environment variable PYTHONIOENCODING.Martin v. Löwis2008-06-011-0/+1
* Renamed PyString to PyBytesChristian Heimes2008-05-261-1/+1
* Implemented PEP 370Christian Heimes2008-05-061-1/+10
* Improve -X error message.Georg Brandl2008-04-131-1/+1
* Applied patch #2617 from Frank Wierzbicki wit some extras from meChristian Heimes2008-04-121-1/+5
* Backport #1442: report exception when startup file cannot be run.Georg Brandl2008-03-291-0/+9
* Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,...Christian Heimes2008-03-261-1/+4
* Remove all traces of HAVE_STRERROR.Brett Cannon2008-03-181-5/+1
* Coverity CID #168Christian Heimes2008-01-181-0/+1
* patch #1668: clarify envvar docs; rename THREADDEBUG to PYTHONTHREADDEBUG.Georg Brandl2008-01-071-1/+1
* Patch #602345 by Neal Norwitz and me: add -B option and PYTHONDONTWRITEBYTECO...Georg Brandl2008-01-071-6/+14
* Backport some main.c cleanup from the py3k branchNick Coghlan2007-11-201-12/+13
* Patch #1739468: Directories and zipfiles containing __main__.py are now execu...Nick Coghlan2007-11-181-40/+80
* Fix Coverity 168: Close the file before returning (exiting).Neal Norwitz2007-10-121-0/+1
* Fix bug 1764407 - the -i switch now does the right thing when using the -m sw...Nick Coghlan2007-08-251-5/+4
* Add -3 option to the interpreter to warn about features that areNeal Norwitz2007-05-231-1/+6
* Variant of patch #697613: don't exit the interpreter on a SystemExitGeorg Brandl2007-03-071-11/+11
* Silence a warning from gcc 4.0.1 by specifying a function's parameter list isBrett Cannon2007-01-051-1/+1
* Bug #1566280: Explicitly invoke threading._shutdown from Py_Main,Martin v. Löwis2007-01-041-0/+29
* Rewrite help message to remove some of the parentheticals. (There were a lot...Andrew M. Kuchling2006-09-141-9/+9
* Make --help mention that -v can be supplied multiple timesAndrew M. Kuchling2006-09-141-0/+1
* Accept long options "--help" and "--version".Georg Brandl2006-07-121-3/+4
* Make the -m switch conform to the documentation of sys.path by behaving like ...Nick Coghlan2006-06-121-2/+3
* Patch #1492356: Port to Windows CE (patch set 1).Martin v. Löwis2006-05-221-0/+2
* spread the extern "C" { } magic pixie dust around. Python itself builds nowAnthony Baxter2006-04-131-0/+9
* Some more changes to make code compile under a C++ compiler.Anthony Baxter2006-04-111-2/+2
* Implement PEP 338 which has been marked as accepted by GvRNick Coghlan2006-03-151-42/+37
* Try to be a bit more consistent on all platforms:Neal Norwitz2006-03-091-1/+2
* Fix a bunch of imports to use code.h instead of compile.h.Jeremy Hylton2005-10-211-1/+1
* SF bug #887946, segfault if redirecting directoryNeal Norwitz2005-10-031-0/+8
* SF patch #1035498: -m option to run a module as a scriptRaymond Hettinger2004-10-071-7/+73
* Patch #1011822: Display errno/strerror for inaccessible files.Martin v. Löwis2004-08-191-2/+7
* Add pystack definition to Misc/gdbinit with some explanation of its behaviorSkip Montanaro2004-03-011-0/+3
* Getting rid of support for the ancient Apple MPW compiler.Jack Jansen2003-11-191-7/+0
* Patch #794400: Let PYTHONSTARTUP influence the compiler flags.Martin v. Löwis2003-11-181-9/+14
* Fix a bunch of typos in documentation, docstrings and comments.Walter Dörwald2003-10-201-1/+1
* Py_Main(): Add a check for the PYTHONINSPECT environment variableBarry Warsaw2003-06-291-0/+9
* Patch #672053: Return a result from Py_Main, instead of exiting.Martin v. Löwis2003-03-301-9/+9