summaryrefslogtreecommitdiff
path: root/Python/pythonrun.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-25083: Python can sometimes create incorrect .pyc files (GH-8449)tzickel2018-09-101-0/+3
* [2.7] bpo-34234: Use _PyAnyInt_Check() and _PyAnyInt_CheckExact(). (GH-8479)Serhiy Storchaka2018-07-311-1/+1
* bpo-34080: Fix a memory leak in the compiler. (GH-8222)Miss Islington (bot)2018-07-111-1/+1
* [2.7] bpo-31692: Add PYTHONSHOWALLOCCOUNT env var (GH-3927)Victor Stinner2017-10-171-1/+3
* bpo-31733: Add PYTHONSHOWREFCOUNT env var (GH-3932)Victor Stinner2017-10-171-10/+17
* Issue #14376: sys.exit now accepts longs as well as ints. Thanks Gareth Rees.Mark Dickinson2017-02-021-1/+1
* Issue #27076: Doc, comment and test function name spelling fixesMartin Panter2016-05-261-1/+1
* Issue #22836: Keep exception reports sensible despite errorsMartin Panter2016-02-281-1/+7
* Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(),Serhiy Storchaka2015-05-301-22/+21
* Issue #21963: backout issue #1856 patch (avoid crashes and lockups whenAntoine Pitrou2014-11-211-8/+1
* PEP 466: backport persistent urandom fd (closes #21305)Benjamin Peterson2014-08-281-0/+1
* avoid crashes and lockups from daemon threads during interpreter shutdown (#1...Benjamin Peterson2014-06-161-1/+8
* Issue #18603: Ensure that PyOS_mystricmp and PyOS_mystrnicmp are in theChristian Heimes2013-10-221-0/+5
* Issue #15001: fix segfault on "del sys.modules['__main__']"Hynek Schlawack2012-11-071-5/+5
* fix parse_syntax_error to clean up its resourcesBenjamin Peterson2012-04-031-19/+31
* Fix crash at startup with -W options.Antoine Pitrou2012-02-211-1/+0
* merge 2.6 with hash randomization fixBenjamin Peterson2012-02-201-0/+8
|\
| * - Issue #13703: oCERT-2011-003: add -R command-line option and PYTHONHASHSEEDBarry Warsaw2012-02-201-0/+8
| * Merged revisions 81537 via svnmerge fromVictor Stinner2010-05-251-1/+7
| * Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-1332/+1332
| * Merged revisions 81007 via svnmerge fromJean-Paul Calderone2010-05-081-0/+4
| * Partial backport of r78826: leave import site error handler unchanged (printVictor Stinner2010-03-211-4/+12
| * Merged revisions 75570,75574,75624 via svnmerge fromAntoine Pitrou2009-10-271-0/+30
| * Merged revisions 71152 via svnmerge fromMatthias Klose2009-04-041-2/+3
| * Merged revisions 70908 via svnmerge fromJesse Noller2009-03-311-0/+2
| * Merged revisions 68133-68134,68141-68142,68145-68146,68148-68149,68159-68162,...Georg Brandl2009-01-031-3/+19
| * Merged revisions 67343 via svnmerge fromAmaury Forgeot d'Arc2008-11-221-1/+1
| * Merged revisions 67066 via svnmerge fromBenjamin Peterson2008-10-311-6/+12
* | Port #6498 fix: fix several misspellings of "SystemExit" as "SystemError".Georg Brandl2011-05-151-1/+1
* | Merged revisions 85904 via svnmerge fromBenjamin Peterson2010-10-291-0/+2
* | Merged revisions 85814 via svnmerge fromBenjamin Peterson2010-10-241-2/+0
* | sys.stderr and sys.excepthook can be None at interpreter shutdown,Antoine Pitrou2010-08-081-2/+2
* | Issue #3798: Write sys.exit() message to sys.stderr to use stderr encoding andVictor Stinner2010-05-251-1/+7
* | Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-1325/+1325
* | Skip signal handler re-installation if it is not necessary. Issue 8354.Jean-Paul Calderone2010-05-081-0/+4
* | Change to a Py_XDECREF and fix some whitespace.Brett Cannon2010-05-051-8/+8
* | Issue #3137: Don't ignore errors at startup, especially a keyboard interruptVictor Stinner2010-03-101-16/+16
* | Issue #1722344: threading._shutdown() is now called in Py_Finalize(), whichAntoine Pitrou2009-10-201-0/+30
* | - Issue #3845: In PyRun_SimpleFileExFlags avoid invalid memory access withMatthias Klose2009-04-041-2/+3
* | Issue 5619: Pass MS CRT debug flags into subprocessesJesse Noller2009-03-311-0/+2
* | Issue #4258: Use 30-bit digits for Python longs, on 64-bit platforms.Mark Dickinson2009-03-201-0/+3
* | fix compilation on non-Windows platformsBenjamin Peterson2009-01-021-0/+2
* | Issue #4075: Use OutputDebugStringW in Py_FatalError.Martin v. Löwis2009-01-021-3/+17
* | #3996: On Windows, PyOS_CheckStack is supposed to protect the interpreter fromAmaury Forgeot d'Arc2008-11-221-1/+1
* | make sure the parser flags and passed onto the compilerBenjamin Peterson2008-10-311-6/+12
|/
* Fix:Neal Norwitz2008-08-241-2/+2
* #3378: in case of no memory, don't leak even more memory. :)Georg Brandl2008-07-191-6/+7
* Fix tabs.Georg Brandl2008-07-051-12/+12
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-14/+14
* Typo: encoding -> codeset.Martin v. Löwis2008-06-011-1/+1