summaryrefslogtreecommitdiffstats
path: root/Python/pythonrun.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* 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
* Move sys_stream and sys_isatty out of the have-langinfo block.Martin v. Löwis2008-06-011-1/+1
* New environment variable PYTHONIOENCODING.Martin v. Löwis2008-06-011-29/+74
* Renamed PyString to PyBytesChristian Heimes2008-05-261-14/+14
* First step of the C API rename:Christian Heimes2008-05-261-2/+2
* #2816: clarify error messages for EOF while scanning strings.Georg Brandl2008-05-111-2/+2
* Implemented PEP 370Christian Heimes2008-05-061-0/+1
* Re-implement the 'warnings' module in C. This allows for usage of theBrett Cannon2008-04-121-60/+15
* C89 compliance: Microsoft compilers want variable declarations at the topAmaury Forgeot d'Arc2008-03-261-4/+2
* Initialize PyCompilerFlags cf_flags with 0Christian Heimes2008-03-261-0/+2
* Patch #2477: Added from __future__ import unicode_literalsChristian Heimes2008-03-261-7/+23
* Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,...Christian Heimes2008-03-261-1/+26
* Backport of the print function, using a __future__ import.Eric Smith2008-03-181-4/+5
* Perform correct handling of stack overflow for windows: Catch the correct exc...Kristján Valur Jónsson2008-02-181-2/+8
* Deallocate content of the dict free list on interpreter shutdownChristian Heimes2008-02-081-0/+1
* Added clear cache methods to clear the internal type lookup cache for ref lea...Christian Heimes2008-01-271-0/+3
* Patch #602345 by Neal Norwitz and me: add -B option and PYTHONDONTWRITEBYTECO...Georg Brandl2008-01-071-0/+3
* Issue #1402: PyInterpreterState_Clear() may still invoke user codeAmaury Forgeot d'Arc2007-11-291-5/+5
* Make pythoncore compile cleanly with VisualStudio 2005. Used an explicit typ...Kristján Valur Jónsson2007-04-251-0/+1
* Bug #742342: make Python stop segfaulting on infinitely-recursive reload()s. ...Collin Winter2007-03-121-0/+4
* Bug #1678647: write a newline after printing an exception in anyGeorg Brandl2007-03-121-2/+2
* Patch #703779: unset __file__ in __main__ after running a file. ThisGeorg Brandl2007-03-071-3/+11
* Variant of patch #697613: don't exit the interpreter on a SystemExitGeorg Brandl2007-03-071-0/+6
* Bug #1674503: close the file opened by execfile() in an error condition.Georg Brandl2007-03-061-2/+2
* SF patch #1630975: Fix crash when replacing sys.stdout in sitecustomizeThomas Wouters2007-01-231-3/+6
* with and as are now keywords. There are some generated files I can't recreate.Neal Norwitz2006-09-061-0/+7
* Handle a few more error conditions.Neal Norwitz2006-08-211-0/+5
* PyModule_GetDict() can fail, produce fatal errors if this happens on startup.Neal Norwitz2006-08-121-0/+4
* Whoops, how did that get in there. :-) Revert all the parts of 51227 that we...Neal Norwitz2006-08-121-3/+0
* Check returned pointer is valid.Neal Norwitz2006-08-121-0/+3
* Fix more memory allocation issues found with failmalloc.Neal Norwitz2006-07-221-6/+17
* Handle more memory allocation failures without crashing.Neal Norwitz2006-07-211-4/+13
* Reported by Klocwork #151.Neal Norwitz2006-07-171-2/+13
* Patch #1495999: Part two of Windows CE changes.Martin v. Löwis2006-06-101-0/+2
* PyErr_Display(), PyErr_WriteUnraisable(): Coverity found a cut-and-pasteTim Peters2006-05-281-13/+15
* Conversion of exceptions over from faked-up classes to new-style C types.Richard Jones2006-05-271-4/+8