| Commit message (Expand) | Author | Age | Files | Lines |
* | Make it so TypeError is raised if an instance of an object is put in an | Brett Cannon | 2007-02-26 | 1 | -19/+8 |
|
|
* | Two more patches by Tony Lownds (SF# 1607548). | Guido van Rossum | 2007-02-26 | 1 | -28/+7 |
|
|
* | You can no longer catch non-BaseException objects; TypeError is raised if such | Brett Cannon | 2007-02-26 | 1 | -19/+23 |
|
|
* | Merged revisions 53912-53951 via svnmerge from | Thomas Wouters | 2007-02-26 | 1 | -2/+4 |
|
|
* | Fix a refleak in the MAKE_FUNCTION opcode in ceval.c. | Georg Brandl | 2007-02-26 | 1 | -0/+2 |
|
|
* | Bytes literal. | Thomas Wouters | 2007-02-23 | 1 | -0/+13 |
|
|
* | Kill off softspace completely (except in formatter.py which seems to have | Guido van Rossum | 2007-02-09 | 1 | -11/+0 |
|
|
* | * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes. | Georg Brandl | 2007-02-09 | 1 | -76/+0 |
|
|
* | Merged revisions 53538-53622 via svnmerge from | Thomas Wouters | 2007-02-05 | 1 | -2/+32 |
|
|
* | Fix minor grammar typo. | Brett Cannon | 2007-01-29 | 1 | -1/+1 |
|
|
* | Merged the int/long unification branch, by very crude means (sorry Thomas!). | Guido van Rossum | 2007-01-14 | 1 | -1/+1 |
|
|
* | Merged revisions 53005-53303 via svnmerge from | Thomas Wouters | 2007-01-09 | 1 | -1/+10 |
|
|
* | PEP 3107 - Function Annotations thanks to Tony Lownds | Neal Norwitz | 2006-12-28 | 1 | -0/+28 |
|
|
* | Four months of trunk changes (including a few releases...) | Thomas Wouters | 2006-12-13 | 1 | -3/+5 |
|
|
* | Make it compile with older compilers. | Guido van Rossum | 2006-11-22 | 1 | -3/+3 |
|
|
* | Jiwon Seo's PEP 3102 implementation. | Guido van Rossum | 2006-10-27 | 1 | -14/+64 |
|
|
* | Patch #1550800: make exec a function. | Georg Brandl | 2006-09-06 | 1 | -117/+0 |
|
|
* | SF patch 1547796 by Georg Brandl -- set literals. | Guido van Rossum | 2006-08-28 | 1 | -0/+18 |
|
|
* | Remove the UNARY_CONVERT opcode (was used for backticks). Also bumped up the | Brett Cannon | 2006-08-25 | 1 | -8/+0 |
|
|
* | Merge current trunk into p3yk. This includes the PyNumber_Index API change, | Thomas Wouters | 2006-08-21 | 1 | -8/+16 |
|
|
* | Completely get rid of PyClass and PyInstance. | Guido van Rossum | 2006-08-17 | 1 | -13/+2 |
|
|
* | Merged revisions 46753-51188 via svnmerge from | Thomas Wouters | 2006-08-11 | 1 | -6/+12 |
|
|
* | Get rid of most of the flags (in tp_flags) that keep track of various | Guido van Rossum | 2006-07-27 | 1 | -4/+2 |
|
|
* | Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn | Thomas Wouters | 2006-06-08 | 1 | -2/+13 |
|
|
* | Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. | Thomas Wouters | 2006-05-27 | 1 | -76/+96 |
|
|
* | Merge p3yk branch with the trunk up to revision 45595. This breaks a fair | Thomas Wouters | 2006-04-21 | 1 | -125/+25 |
|
|
* | _Py_QnewFlag and INPLACE_DIVIDE are not necessary any longer | Neal Norwitz | 2006-03-17 | 1 | -13/+0 |
|
|
* | Get rid of last vestiges of BINARY_DIVIDE. | Neal Norwitz | 2006-03-16 | 1 | -13/+0 |
|
|
* | Checkpoint. 218 tests are okay; 53 are failing. Done so far: | Guido van Rossum | 2006-03-15 | 1 | -14/+4 |
|
|
* | Um, I thought I'd already checked this in. | Guido van Rossum | 2006-03-10 | 1 | -22/+25 |
|
|
* | Checking in the code for PEP 357. | Guido van Rossum | 2006-03-07 | 1 | -46/+22 |
|
|
* | SF #1444030: Fix several potential defects found by Coverity. | Hye-Shik Chang | 2006-03-07 | 1 | -1/+4 |
|
|
* | Use Py_ssize_t since we are working with list size below | Neal Norwitz | 2006-03-02 | 1 | -1/+1 |
|
|
* | Put back the essence of Jeremy's original XXX comment. | Thomas Wouters | 2006-03-01 | 1 | -1/+3 |
|
|
* | PEP 352 implementation. Creates a new base class, BaseException, which has an | Brett Cannon | 2006-03-01 | 1 | -5/+5 |
|
|
* | Updates to the with-statement: | Guido van Rossum | 2006-02-28 | 1 | -6/+20 |
|
|
* | SF patch #1438387, PEP 328: relative and absolute imports. | Thomas Wouters | 2006-02-28 | 1 | -6/+17 |
|
|
* | Check the return code for PyErr_Warn() when warning about raising string | Brett Cannon | 2006-02-27 | 1 | -4/+5 |
|
|
* | PEP 343 -- the with-statement. | Guido van Rossum | 2006-02-27 | 1 | -7/+42 |
|
|
* | Bug #801349: document that start/stop/step slice arguments can be None | Georg Brandl | 2006-02-19 | 1 | -1/+1 |
|
|
* | Remove size constraints in SLICE opcodes. | Martin v. Löwis | 2006-02-17 | 1 | -16/+11 |
|
|
* | Merge ssize_t branch. | Martin v. Löwis | 2006-02-15 | 1 | -5/+8 |
|
|
* | Explain the clearing of the stack in a comment in Python/ceval.c's | Thomas Wouters | 2006-02-10 | 1 | -1/+2 |
|
|
* | Add const to several API functions that take char *. | Jeremy Hylton | 2005-12-10 | 1 | -2/+2 |
|
|
* | Fix some mods that got dropped from the AST merge | Neal Norwitz | 2005-10-21 | 1 | -2/+2 |
|
|
* | Merge ast-branch to head | Jeremy Hylton | 2005-10-20 | 1 | -30/+15 |
|
|
* | clean-up tracing of C functions. In particular, don't call the trace func | Armin Rigo | 2005-09-20 | 1 | -26/+31 |
|
|
* | Port from the Python 2.4 branch, patches for SF bug # 900092, | Barry Warsaw | 2005-08-15 | 1 | -8/+14 |
|
|
* | PEP 342 implementation. Per Guido's comments, the generator throw() | Phillip J. Eby | 2005-08-02 | 1 | -3/+15 |
|
|
* | Fix signedness of various char variables to stop causing a warning under gcc 4. | Brett Cannon | 2005-06-25 | 1 | -1/+1 |
|
|