| Commit message (Expand) | Author | Age | Files | Lines |
* | Checkpoint. 218 tests are okay; 53 are failing. Done so far: | Guido van Rossum | 2006-03-15 | 1 | -3/+1 |
|
|
* | Address an coverity issue. Coverity was complaining about a line that's fine, | Guido van Rossum | 2006-03-07 | 1 | -1/+2 |
|
|
* | Fix warnings on x86 (32-bit). | Neal Norwitz | 2006-03-06 | 1 | -1/+2 |
|
|
* | Use %Id for size_t-ish things on Win64. | Martin v. Löwis | 2006-03-05 | 1 | -1/+1 |
|
|
* | Use Py_ssize_t for _Py_RefTotal. | Neal Norwitz | 2006-03-04 | 1 | -6/+12 |
|
|
* | Tabify | Neal Norwitz | 2006-03-04 | 1 | -34/+34 |
|
|
* | Get rid of run_err_mod(). It was only used in two places. | Neal Norwitz | 2006-03-04 | 1 | -14/+4 |
|
|
* | Fix refleak in PyErr_Display(). | Brett Cannon | 2006-03-02 | 1 | -15/+14 |
|
|
* | Reconst parameters that lost their const in the AST merge. | Martin v. Löwis | 2006-03-01 | 1 | -1/+1 |
|
|
* | PEP 352 implementation. Creates a new base class, BaseException, which has an | Brett Cannon | 2006-03-01 | 1 | -7/+5 |
|
|
* | from __future__ import with_statement addon for 'with', mostly written by | Thomas Wouters | 2006-02-28 | 1 | -2/+4 |
|
|
* | Check whether there are flags. | Martin v. Löwis | 2006-02-26 | 1 | -1/+1 |
|
|
* | Generate code to recursively copy an AST into | Martin v. Löwis | 2006-02-26 | 1 | -0/+5 |
|
|
* | Merge ssize_t branch. | Martin v. Löwis | 2006-02-15 | 1 | -1/+1 |
|
|
* | Fix Bug #1378022, UTF-8 files with a leading BOM crashed the interpreter. | Neal Norwitz | 2005-12-18 | 1 | -2/+2 |
|
|
* | Merge from ast-arena. This reduces the code in Python/ast.c by ~300 lines, | Neal Norwitz | 2005-12-17 | 1 | -51/+58 |
|
|
* | Patch #1350409: Port signal handling to VS 2005. | Martin v. Löwis | 2005-11-28 | 1 | -0/+17 |
|
|
* | Merge ast-branch to head | Jeremy Hylton | 2005-10-20 | 1 | -152/+124 |
|
|
* | - Fix segfault with invalid coding. | Neal Norwitz | 2005-10-02 | 1 | -1/+1 |
|
|
* | Forward UnicodeDecodeError into SyntaxError for source encoding errors. | Martin v. Löwis | 2005-08-24 | 1 | -5/+7 |
|
|
* | * Improve code for the empty frozenset singleton: | Raymond Hettinger | 2005-08-01 | 1 | -0/+1 |
|
|
* | This is my patch: | Michael W. Hudson | 2005-05-27 | 1 | -0/+2 |
|
|
* | Move exception finalisation later in the shutdown process - this | Anthony Baxter | 2005-03-29 | 1 | -7/+8 |
|
|
* | Patch #802188: better parser error message for non-EOL following line cont. | Martin v. Löwis | 2005-03-03 | 1 | -0/+3 |
|
|
* | Patch #975056 - fixes for restartable signals on *BSD. In addition, | Anthony Baxter | 2004-10-13 | 1 | -24/+19 |
|
|
* | SF patch 1044089: New C API function PyEval_ThreadsInitialized(), by Nick | Tim Peters | 2004-10-11 | 1 | -1/+0 |
|
|
* | Finalize the freelist of list objects. | Raymond Hettinger | 2004-10-07 | 1 | -0/+1 |
|
|
* | Patch #900727: Add Py_InitializeEx to allow embedding without signals. | Martin v. Löwis | 2004-08-19 | 1 | -2/+10 |
|
|
* | Patch #984714: Properly diagnose E_DECODE errors. | Martin v. Löwis | 2004-07-21 | 1 | -0/+3 |
|
|
* | This closes patch: | Michael W. Hudson | 2004-07-07 | 1 | -1/+2 |
|
|
* | Changed random calls to PyThreadState_Get() to use the macro | Nicholas Bastin | 2004-03-24 | 1 | -3/+3 |
|
|
* | Lost reference. | Armin Rigo | 2004-03-22 | 1 | -6/+8 |
|
|
* | remove support for missing ANSI C header files (limits.h, stddef.h, etc). | Skip Montanaro | 2004-02-10 | 1 | -4/+0 |
|
|
* | Py_Finalize(): disabled the second call of cyclic gc, and added extensive | Tim Peters | 2003-12-01 | 1 | -2/+27 |
|
|
* | Getting rid of all the code inside #ifdef macintosh too. | Jack Jansen | 2003-11-20 | 1 | -14/+0 |
|
|
* | Getting rid of support for the ancient Apple MPW compiler. | Jack Jansen | 2003-11-19 | 1 | -12/+0 |
|
|
* | Patch #804543: strdup saved locales. Backported to 2.3. | Martin v. Löwis | 2003-11-13 | 1 | -1/+2 |
|
|
* | Simplify and speedup uses of Py_BuildValue(): | Raymond Hettinger | 2003-10-12 | 1 | -1/+1 |
|
|
* | Fix refcounting and cut & paste error (?) in last checkin. | Michael W. Hudson | 2003-08-11 | 1 | -3/+1 |
|
|
* | Move initialization of sys.std{in,out}.encoding to Py_Initialize. | Martin v. Löwis | 2003-08-09 | 1 | -15/+51 |
|
|
* | Correct previous patch looking for warnings module: sys.modules, not | Mark Hammond | 2003-07-16 | 1 | -1/+1 |
|
|
* | Fix [ 771097 ] frozen programs fail due to implicit import of "warnings". | Mark Hammond | 2003-07-15 | 1 | -5/+36 |
|
|
* | PyGILState cleanup was too early - destructors called via module cleanup may ... | Mark Hammond | 2003-04-22 | 1 | -5/+5 |
|
|
* | handle_system_exit(): This leaked the current exception info, in | Tim Peters | 2003-04-19 | 1 | -4/+16 |
|
|
* | New PyGILState_ API - implements pep 311, from patch 684256. | Mark Hammond | 2003-04-19 | 1 | -0/+15 |
|
|
* | _Py_PrintReferences(): Changed to print object address at start of each | Tim Peters | 2003-04-17 | 1 | -2/+9 |
|
|
* | - New C API PyGC_Collect(), same as calling gc.collect(). | Guido van Rossum | 2003-04-17 | 1 | -0/+8 |
|
|
* | A missing piece of the PEP 269 patch: add PyParser_SetError(), a | Guido van Rossum | 2003-04-17 | 1 | -0/+9 |
|
|
* | Trimmed trailing whitespace. | Tim Peters | 2003-04-17 | 1 | -10/+10 |
|
|
* | Py_Finalize(): Reverted recent changes that tried to move the | Tim Peters | 2003-04-17 | 1 | -8/+11 |
|
|