aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/pythonrun.c
Commit message (Expand)AuthorAge
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-21
* _Py_QnewFlag and INPLACE_DIVIDE are not necessary any longerNeal Norwitz2006-03-17
* Checkpoint. 218 tests are okay; 53 are failing. Done so far:Guido van Rossum2006-03-15
* Address an coverity issue. Coverity was complaining about a line that's fine,Guido van Rossum2006-03-07
* Fix warnings on x86 (32-bit).Neal Norwitz2006-03-06
* Use %Id for size_t-ish things on Win64.Martin v. Löwis2006-03-05
* Use Py_ssize_t for _Py_RefTotal.Neal Norwitz2006-03-04
* TabifyNeal Norwitz2006-03-04
* Get rid of run_err_mod(). It was only used in two places.Neal Norwitz2006-03-04
* Fix refleak in PyErr_Display().Brett Cannon2006-03-02
* Reconst parameters that lost their const in the AST merge.Martin v. Löwis2006-03-01
* PEP 352 implementation. Creates a new base class, BaseException, which has anBrett Cannon2006-03-01
* from __future__ import with_statement addon for 'with', mostly written byThomas Wouters2006-02-28
* Check whether there are flags.Martin v. Löwis2006-02-26
* Generate code to recursively copy an AST intoMartin v. Löwis2006-02-26
* Merge ssize_t branch.Martin v. Löwis2006-02-15
* Fix Bug #1378022, UTF-8 files with a leading BOM crashed the interpreter.Neal Norwitz2005-12-18
* Merge from ast-arena. This reduces the code in Python/ast.c by ~300 lines,Neal Norwitz2005-12-17
* Patch #1350409: Port signal handling to VS 2005.Martin v. Löwis2005-11-28
* Merge ast-branch to headJeremy Hylton2005-10-20
* - Fix segfault with invalid coding.Neal Norwitz2005-10-02
* Forward UnicodeDecodeError into SyntaxError for source encoding errors.Martin v. Löwis2005-08-24
* * Improve code for the empty frozenset singleton:Raymond Hettinger2005-08-01
* This is my patch:Michael W. Hudson2005-05-27
* Move exception finalisation later in the shutdown process - thisAnthony Baxter2005-03-29
* Patch #802188: better parser error message for non-EOL following line cont.Martin v. Löwis2005-03-03
* Patch #975056 - fixes for restartable signals on *BSD. In addition,Anthony Baxter2004-10-13
* SF patch 1044089: New C API function PyEval_ThreadsInitialized(), by NickTim Peters2004-10-11
* Finalize the freelist of list objects.Raymond Hettinger2004-10-07
* Patch #900727: Add Py_InitializeEx to allow embedding without signals.Martin v. Löwis2004-08-19
* Patch #984714: Properly diagnose E_DECODE errors.Martin v. Löwis2004-07-21
* This closes patch:Michael W. Hudson2004-07-07
* Changed random calls to PyThreadState_Get() to use the macroNicholas Bastin2004-03-24
* Lost reference.Armin Rigo2004-03-22
* remove support for missing ANSI C header files (limits.h, stddef.h, etc).Skip Montanaro2004-02-10
* Py_Finalize(): disabled the second call of cyclic gc, and added extensiveTim Peters2003-12-01
* Getting rid of all the code inside #ifdef macintosh too.Jack Jansen2003-11-20
* Getting rid of support for the ancient Apple MPW compiler.Jack Jansen2003-11-19
* Patch #804543: strdup saved locales. Backported to 2.3.Martin v. Löwis2003-11-13
* Simplify and speedup uses of Py_BuildValue():Raymond Hettinger2003-10-12
* Fix refcounting and cut & paste error (?) in last checkin.Michael W. Hudson2003-08-11
* Move initialization of sys.std{in,out}.encoding to Py_Initialize.Martin v. Löwis2003-08-09
* Correct previous patch looking for warnings module: sys.modules, notMark Hammond2003-07-16
* Fix [ 771097 ] frozen programs fail due to implicit import of "warnings".Mark Hammond2003-07-15
* PyGILState cleanup was too early - destructors called via module cleanup may ...Mark Hammond2003-04-22
* handle_system_exit(): This leaked the current exception info, inTim Peters2003-04-19
* New PyGILState_ API - implements pep 311, from patch 684256.Mark Hammond2003-04-19
* _Py_PrintReferences(): Changed to print object address at start of eachTim Peters2003-04-17
* - New C API PyGC_Collect(), same as calling gc.collect().Guido van Rossum2003-04-17
* A missing piece of the PEP 269 patch: add PyParser_SetError(), aGuido van Rossum2003-04-17