summaryrefslogtreecommitdiffstats
path: root/Python/pythonrun.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Change those parts of the Python-api that were functions in 2.4, andThomas Heller2006-04-181-4/+96
* Remove types from type_list if they have no objectsMartin v. Löwis2006-04-181-2/+9
* spread the extern "C" { } magic pixie dust around. Python itself builds nowAnthony Baxter2006-04-131-0/+9
* Ignore the references to the dummy objects used as deleted keysArmin Rigo2006-04-121-1/+1
* Bug #1421664: Set sys.stderr.encodingMartin v. Löwis2006-04-031-0/+10
* In format strings slinging Py_ssize_t, unconditionallyTim Peters2006-03-281-9/+6
* Years in the making.Tim Peters2006-03-261-1/+1
* Address an coverity issue. Coverity was complaining about a line that's fine,Guido van Rossum2006-03-071-1/+2
* Fix warnings on x86 (32-bit).Neal Norwitz2006-03-061-1/+2
* Use %Id for size_t-ish things on Win64.Martin v. Löwis2006-03-051-1/+1
* Use Py_ssize_t for _Py_RefTotal.Neal Norwitz2006-03-041-6/+12
* TabifyNeal Norwitz2006-03-041-34/+34
* Get rid of run_err_mod(). It was only used in two places.Neal Norwitz2006-03-041-14/+4
* Fix refleak in PyErr_Display().Brett Cannon2006-03-021-15/+14
* Reconst parameters that lost their const in the AST merge.Martin v. Löwis2006-03-011-1/+1
* PEP 352 implementation. Creates a new base class, BaseException, which has anBrett Cannon2006-03-011-7/+5
* from __future__ import with_statement addon for 'with', mostly written byThomas Wouters2006-02-281-2/+4
* Check whether there are flags.Martin v. Löwis2006-02-261-1/+1
* Generate code to recursively copy an AST intoMartin v. Löwis2006-02-261-0/+5
* Merge ssize_t branch.Martin v. Löwis2006-02-151-1/+1
* Fix Bug #1378022, UTF-8 files with a leading BOM crashed the interpreter.Neal Norwitz2005-12-181-2/+2
* Merge from ast-arena. This reduces the code in Python/ast.c by ~300 lines,Neal Norwitz2005-12-171-51/+58
* Patch #1350409: Port signal handling to VS 2005.Martin v. Löwis2005-11-281-0/+17
* Merge ast-branch to headJeremy Hylton2005-10-201-152/+124
* - Fix segfault with invalid coding.Neal Norwitz2005-10-021-1/+1
* Forward UnicodeDecodeError into SyntaxError for source encoding errors.Martin v. Löwis2005-08-241-5/+7
* * Improve code for the empty frozenset singleton:Raymond Hettinger2005-08-011-0/+1
* This is my patch:Michael W. Hudson2005-05-271-0/+2
* Move exception finalisation later in the shutdown process - thisAnthony Baxter2005-03-291-7/+8
* Patch #802188: better parser error message for non-EOL following line cont.Martin v. Löwis2005-03-031-0/+3
* Patch #975056 - fixes for restartable signals on *BSD. In addition,Anthony Baxter2004-10-131-24/+19
* SF patch 1044089: New C API function PyEval_ThreadsInitialized(), by NickTim Peters2004-10-111-1/+0