aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/pythonrun.c
Commit message (Expand)AuthorAge
* Issue #15001: fix segfault on "del sys.modules['__main__']"Hynek Schlawack2012-11-07
* fix parse_syntax_error to clean up its resourcesBenjamin Peterson2012-04-03
* Fix crash at startup with -W options.Antoine Pitrou2012-02-21
* merge 2.6 with hash randomization fixBenjamin Peterson2012-02-20
|\
| * - Issue #13703: oCERT-2011-003: add -R command-line option and PYTHONHASHSEEDBarry Warsaw2012-02-20
| * Merged revisions 81537 via svnmerge fromVictor Stinner2010-05-25
| * Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-09
| * Merged revisions 81007 via svnmerge fromJean-Paul Calderone2010-05-08
| * Partial backport of r78826: leave import site error handler unchanged (printVictor Stinner2010-03-21
| * Merged revisions 75570,75574,75624 via svnmerge fromAntoine Pitrou2009-10-27
| * Merged revisions 71152 via svnmerge fromMatthias Klose2009-04-04
| * Merged revisions 70908 via svnmerge fromJesse Noller2009-03-31
| * Merged revisions 68133-68134,68141-68142,68145-68146,68148-68149,68159-68162,...Georg Brandl2009-01-03
| * Merged revisions 67343 via svnmerge fromAmaury Forgeot d'Arc2008-11-22
| * Merged revisions 67066 via svnmerge fromBenjamin Peterson2008-10-31
* | Port #6498 fix: fix several misspellings of "SystemExit" as "SystemError".Georg Brandl2011-05-15
* | Merged revisions 85904 via svnmerge fromBenjamin Peterson2010-10-29
* | Merged revisions 85814 via svnmerge fromBenjamin Peterson2010-10-24
* | sys.stderr and sys.excepthook can be None at interpreter shutdown,Antoine Pitrou2010-08-08
* | Issue #3798: Write sys.exit() message to sys.stderr to use stderr encoding andVictor Stinner2010-05-25
* | Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-09
* | Skip signal handler re-installation if it is not necessary. Issue 8354.Jean-Paul Calderone2010-05-08
* | Change to a Py_XDECREF and fix some whitespace.Brett Cannon2010-05-05
* | Issue #3137: Don't ignore errors at startup, especially a keyboard interruptVictor Stinner2010-03-10
* | Issue #1722344: threading._shutdown() is now called in Py_Finalize(), whichAntoine Pitrou2009-10-20
* | - Issue #3845: In PyRun_SimpleFileExFlags avoid invalid memory access withMatthias Klose2009-04-04
* | Issue 5619: Pass MS CRT debug flags into subprocessesJesse Noller2009-03-31
* | Issue #4258: Use 30-bit digits for Python longs, on 64-bit platforms.Mark Dickinson2009-03-20
* | fix compilation on non-Windows platformsBenjamin Peterson2009-01-02
* | Issue #4075: Use OutputDebugStringW in Py_FatalError.Martin v. Löwis2009-01-02
* | #3996: On Windows, PyOS_CheckStack is supposed to protect the interpreter fromAmaury Forgeot d'Arc2008-11-22
* | make sure the parser flags and passed onto the compilerBenjamin Peterson2008-10-31
|/
* Fix:Neal Norwitz2008-08-24
* #3378: in case of no memory, don't leak even more memory. :)Georg Brandl2008-07-19
* Fix tabs.Georg Brandl2008-07-05
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-09
* Typo: encoding -> codeset.Martin v. Löwis2008-06-01
* Move sys_stream and sys_isatty out of the have-langinfo block.Martin v. Löwis2008-06-01
* New environment variable PYTHONIOENCODING.Martin v. Löwis2008-06-01
* Renamed PyString to PyBytesChristian Heimes2008-05-26
* First step of the C API rename:Christian Heimes2008-05-26
* #2816: clarify error messages for EOF while scanning strings.Georg Brandl2008-05-11
* Implemented PEP 370Christian Heimes2008-05-06
* Re-implement the 'warnings' module in C. This allows for usage of theBrett Cannon2008-04-12
* C89 compliance: Microsoft compilers want variable declarations at the topAmaury Forgeot d'Arc2008-03-26
* Initialize PyCompilerFlags cf_flags with 0Christian Heimes2008-03-26
* Patch #2477: Added from __future__ import unicode_literalsChristian Heimes2008-03-26
* Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,...Christian Heimes2008-03-26
* Backport of the print function, using a __future__ import.Eric Smith2008-03-18
* Perform correct handling of stack overflow for windows: Catch the correct exc...Kristján Valur Jónsson2008-02-18