| Commit message (Expand) | Author | Age | Files | Lines |
* | Silence compiler warning. | Guido van Rossum | 2007-07-10 | 1 | -1/+1 |
|
|
* | Upon exit, flush stdout and stderr (twice: before and after the code that | Guido van Rossum | 2007-07-09 | 1 | -0/+32 |
|
|
* | Rip out the file object's implementation. | Guido van Rossum | 2007-06-12 | 1 | -34/+0 |
|
|
* | Make identifiers str (not str8) objects throughout. | Martin v. Löwis | 2007-06-10 | 1 | -0/+2 |
|
|
* | Get rid of all #ifdef Py_USING_UNICODE (it is always present now). | Guido van Rossum | 2007-05-03 | 1 | -6/+2 |
|
|
* | Checkpoint. Manipulated things so that string literals are always | Guido van Rossum | 2007-04-27 | 1 | -1/+0 |
|
|
* | Merged revisions 53952-54987 via svnmerge from | Guido van Rossum | 2007-04-27 | 1 | -7/+26 |
|
|
* | Patch #1680961: remove sys.exitfunc and replace it with a private C API. Also... | Collin Winter | 2007-03-21 | 1 | -23/+19 |
|
|
* | SF patch #1669633, add methods for bytes from Pete Shinners. | Neal Norwitz | 2007-02-27 | 1 | -0/+4 |
|
|
* | Remove the exceptions builtin module, all the exceptions are already builtin. | Neal Norwitz | 2007-02-26 | 1 | -2/+1 |
|
|
* | Kill off softspace completely (except in formatter.py which seems to have | Guido van Rossum | 2007-02-09 | 1 | -15/+0 |
|
|
* | Merged revisions 53451-53537 via svnmerge from | Thomas Wouters | 2007-02-01 | 1 | -3/+6 |
|
|
* | Merged the int/long unification branch, by very crude means (sorry Thomas!). | Guido van Rossum | 2007-01-14 | 1 | -3/+5 |
|
|
* | Four months of trunk changes (including a few releases...) | Thomas Wouters | 2006-12-13 | 1 | -0/+14 |
|
|
* | Merge current trunk into p3yk. This includes the PyNumber_Index API change, | Thomas Wouters | 2006-08-21 | 1 | -0/+4 |
|
|
* | Merged revisions 46753-51188 via svnmerge from | Thomas Wouters | 2006-08-11 | 1 | -8/+41 |
|
|
* | Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn | Thomas Wouters | 2006-06-08 | 1 | -13/+15 |
|
|
* | Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. | Thomas Wouters | 2006-05-27 | 1 | -4/+8 |
|
|
* | Merge p3yk branch with the trunk up to revision 45595. This breaks a fair | Thomas Wouters | 2006-04-21 | 1 | -16/+131 |
|
|
* | _Py_QnewFlag and INPLACE_DIVIDE are not necessary any longer | Neal Norwitz | 2006-03-17 | 1 | -4/+0 |
|
|
* | 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 |
|
|