| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #1722344: threading._shutdown() is now called in Py_Finalize(), which | Antoine Pitrou | 2009-10-20 | 1 | -29/+0 |
|
|
* | Fix GCC warning about fprintf used without a string literal and | Alexandre Vassalotti | 2009-07-17 | 1 | -3/+3 |
|
|
* | #5704: let python -3 imply -t as well. | Georg Brandl | 2009-04-12 | 1 | -0/+4 |
|
|
* | Py3k warnings now automatically include -Qwarn for division. | Raymond Hettinger | 2009-02-18 | 1 | -0/+2 |
|
|
* | be more specific in -3 option help | Benjamin Peterson | 2009-01-09 | 1 | -1/+1 |
|
|
* | This reverts r63675 based on the discussion in this thread: | Gregory P. Smith | 2008-06-09 | 1 | -1/+1 |
|
|
* | New environment variable PYTHONIOENCODING. | Martin v. Löwis | 2008-06-01 | 1 | -0/+1 |
|
|
* | Renamed PyString to PyBytes | Christian Heimes | 2008-05-26 | 1 | -1/+1 |
|
|
* | Implemented PEP 370 | Christian Heimes | 2008-05-06 | 1 | -1/+10 |
|
|
* | Improve -X error message. | Georg Brandl | 2008-04-13 | 1 | -1/+1 |
|
|
* | Applied patch #2617 from Frank Wierzbicki wit some extras from me | Christian Heimes | 2008-04-12 | 1 | -1/+5 |
|
|
* | Backport #1442: report exception when startup file cannot be run. | Georg Brandl | 2008-03-29 | 1 | -0/+9 |
|
|
* | Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,... | Christian Heimes | 2008-03-26 | 1 | -1/+4 |
|
|
* | Remove all traces of HAVE_STRERROR. | Brett Cannon | 2008-03-18 | 1 | -5/+1 |
|
|
* | Coverity CID #168 | Christian Heimes | 2008-01-18 | 1 | -0/+1 |
|
|
* | patch #1668: clarify envvar docs; rename THREADDEBUG to PYTHONTHREADDEBUG. | Georg Brandl | 2008-01-07 | 1 | -1/+1 |
|
|
* | Patch #602345 by Neal Norwitz and me: add -B option and PYTHONDONTWRITEBYTECO... | Georg Brandl | 2008-01-07 | 1 | -6/+14 |
|
|
* | Backport some main.c cleanup from the py3k branch | Nick Coghlan | 2007-11-20 | 1 | -12/+13 |
|
|
* | Patch #1739468: Directories and zipfiles containing __main__.py are now execu... | Nick Coghlan | 2007-11-18 | 1 | -40/+80 |
|
|
* | Fix Coverity 168: Close the file before returning (exiting). | Neal Norwitz | 2007-10-12 | 1 | -0/+1 |
|
|
* | Fix bug 1764407 - the -i switch now does the right thing when using the -m sw... | Nick Coghlan | 2007-08-25 | 1 | -5/+4 |
|
|
* | Add -3 option to the interpreter to warn about features that are | Neal Norwitz | 2007-05-23 | 1 | -1/+6 |
|
|
* | Variant of patch #697613: don't exit the interpreter on a SystemExit | Georg Brandl | 2007-03-07 | 1 | -11/+11 |
|
|
* | Silence a warning from gcc 4.0.1 by specifying a function's parameter list is | Brett Cannon | 2007-01-05 | 1 | -1/+1 |
|
|
* | Bug #1566280: Explicitly invoke threading._shutdown from Py_Main, | Martin v. Löwis | 2007-01-04 | 1 | -0/+29 |
|
|
* | Rewrite help message to remove some of the parentheticals. (There were a lot... | Andrew M. Kuchling | 2006-09-14 | 1 | -9/+9 |
|
|
* | Make --help mention that -v can be supplied multiple times | Andrew M. Kuchling | 2006-09-14 | 1 | -0/+1 |
|
|
* | Accept long options "--help" and "--version". | Georg Brandl | 2006-07-12 | 1 | -3/+4 |
|
|
* | Make the -m switch conform to the documentation of sys.path by behaving like ... | Nick Coghlan | 2006-06-12 | 1 | -2/+3 |
|
|
* | Patch #1492356: Port to Windows CE (patch set 1). | Martin v. Löwis | 2006-05-22 | 1 | -0/+2 |
|
|
* | spread the extern "C" { } magic pixie dust around. Python itself builds now | Anthony Baxter | 2006-04-13 | 1 | -0/+9 |
|
|
* | Some more changes to make code compile under a C++ compiler. | Anthony Baxter | 2006-04-11 | 1 | -2/+2 |
|
|
* | Implement PEP 338 which has been marked as accepted by GvR | Nick Coghlan | 2006-03-15 | 1 | -42/+37 |
|
|
* | Try to be a bit more consistent on all platforms: | Neal Norwitz | 2006-03-09 | 1 | -1/+2 |
|
|
* | Fix a bunch of imports to use code.h instead of compile.h. | Jeremy Hylton | 2005-10-21 | 1 | -1/+1 |
|
|
* | SF bug #887946, segfault if redirecting directory | Neal Norwitz | 2005-10-03 | 1 | -0/+8 |
|
|
* | SF patch #1035498: -m option to run a module as a script | Raymond Hettinger | 2004-10-07 | 1 | -7/+73 |
|
|
* | Patch #1011822: Display errno/strerror for inaccessible files. | Martin v. Löwis | 2004-08-19 | 1 | -2/+7 |
|
|
* | Add pystack definition to Misc/gdbinit with some explanation of its behavior | Skip Montanaro | 2004-03-01 | 1 | -0/+3 |
|
|
* | Getting rid of support for the ancient Apple MPW compiler. | Jack Jansen | 2003-11-19 | 1 | -7/+0 |
|
|
* | Patch #794400: Let PYTHONSTARTUP influence the compiler flags. | Martin v. Löwis | 2003-11-18 | 1 | -9/+14 |
|
|
* | Fix a bunch of typos in documentation, docstrings and comments. | Walter Dörwald | 2003-10-20 | 1 | -1/+1 |
|
|
* | Py_Main(): Add a check for the PYTHONINSPECT environment variable | Barry Warsaw | 2003-06-29 | 1 | -0/+9 |
|
|
* | Patch #672053: Return a result from Py_Main, instead of exiting. | Martin v. Löwis | 2003-03-30 | 1 | -9/+9 |
|
|
* | Patch #695250: Suppress COPYRIGHT if site.py is not read. Fixes #672614. | Martin v. Löwis | 2003-03-30 | 1 | -3/+6 |
|
|
* | An #endif was missing in Just's patch. Added. | Jack Jansen | 2003-03-05 | 1 | -0/+1 |
|
|
* | removing one Mac hack and add another: | Just van Rossum | 2003-03-05 | 1 | -26/+16 |
|
|
* | Patch #696645: Remove VMS code with uncertain authorship. | Martin v. Löwis | 2003-03-05 | 1 | -33/+8 |
|
|
* | Squashed compiler warnings by adding casts, making sure prototypes are in | Jack Jansen | 2002-12-23 | 1 | -0/+4 |
|
|
* | Patch #614055: Support OpenVMS. | Martin v. Löwis | 2002-12-06 | 1 | -0/+57 |
|
|