| Commit message (Expand) | Author | Age | Files | Lines |
* | http://bugs.python.org/issue4715 | Jeffrey Yasskin | 2009-02-25 | 1 | -3/+5 |
|
|
* | Merged revisions 67818 via svnmerge from | Antoine Pitrou | 2008-12-18 | 1 | -2/+4 |
|
|
* | #3021: Antoine Pitrou's Lexical exception handlers | Benjamin Peterson | 2008-06-11 | 1 | -0/+8 |
|
|
* | Merged revisions 59541-59561 via svnmerge from | Christian Heimes | 2007-12-19 | 1 | -0/+1 |
|
|
* | Merging the py3k-pep3137 branch back into the py3k branch. | Guido van Rossum | 2007-11-06 | 1 | -1/+1 |
|
|
* | Remove the simple slicing API. All slicing is now done with slice objects. | Thomas Wouters | 2007-08-30 | 1 | -9/+0 |
|
|
* | Merged revisions 56301-56442 via svnmerge from | Guido van Rossum | 2007-07-18 | 1 | -1/+1 |
|
|
* | Merged revisions 55225-55227,55229-55269 via svnmerge from | Guido van Rossum | 2007-05-11 | 1 | -0/+2 |
|
|
* | Hide list comp variables and support set comprehensions | Nick Coghlan | 2007-04-15 | 1 | -0/+1 |
|
|
* | Implement PEP 3115 -- new metaclass syntax and semantics. | Guido van Rossum | 2007-03-18 | 1 | -5/+5 |
|
|
* | Bytes literal. | Thomas Wouters | 2007-02-23 | 1 | -1/+1 |
|
|
* | * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes. | Georg Brandl | 2007-02-09 | 1 | -4/+1 |
|
|
* | Patch #1550800: make exec a function. | Georg Brandl | 2006-09-06 | 1 | -1/+1 |
|
|
* | SF patch 1547796 by Georg Brandl -- set literals. | Guido van Rossum | 2006-08-28 | 1 | -5/+6 |
|
|
* | Remove the UNARY_CONVERT opcode (was used for backticks). Also bumped up the | Brett Cannon | 2006-08-25 | 1 | -1/+0 |
|
|
* | INPLACE_DIVIDE is no longer necessary (INPLACE_TRUE_DIVIDE is used). | Neal Norwitz | 2006-03-17 | 1 | -1/+1 |
|
|
* | Get rid of last vestiges of BINARY_DIVIDE. | Neal Norwitz | 2006-03-16 | 1 | -1/+1 |
|
|
* | PEP 343 -- the with-statement. | Guido van Rossum | 2006-02-27 | 1 | -2/+1 |
|
|
* | Install two code generation optimizations that depend on NOP. | Raymond Hettinger | 2004-06-21 | 1 | -0/+1 |
|
|
* | SF patch #910929: Optimize list comprehensions | Raymond Hettinger | 2004-03-07 | 1 | -0/+1 |
|
|
* | Revert the previous enhancement to the bytecode optimizer. | Raymond Hettinger | 2003-04-24 | 1 | -2/+0 |
|
|
* | Improved the bytecode optimizer. | Raymond Hettinger | 2003-04-22 | 1 | -0/+2 |
|
|
* | Further SET_LINENO reomval fixes. See comments in patch #587933. | Michael W. Hudson | 2002-08-30 | 1 | -3/+0 |
|
|
* | This is my patch | Michael W. Hudson | 2002-08-15 | 1 | -2/+3 |
|
|
* | The opcode FOR_LOOP no longer exists. | Guido van Rossum | 2002-06-13 | 1 | -1/+0 |
|
|
* | Patch #494783: Rename cmp_op enumerators. | Martin v. Löwis | 2002-01-01 | 1 | -3/+3 |
|
|
* | Implement PEP 238 in its (almost) full glory. | Guido van Rossum | 2001-08-08 | 1 | -0/+4 |
|
|
* | Merging the gen-branch into the main line, at Guido's direction. Yay! | Tim Peters | 2001-06-18 | 1 | -0/+1 |
|
|
* | Iterators phase 1. This comprises: | Guido van Rossum | 2001-04-20 | 1 | -0/+2 |
|
|
* | Allow 'continue' inside 'try' clause | Jeremy Hylton | 2001-02-01 | 1 | -0/+1 |
|
|
* | PEP 227 implementation | Jeremy Hylton | 2001-01-25 | 1 | -5/+5 |
|
|
* | Rich comparisons: ensure that LT == Py_LT, etc. | Guido van Rossum | 2001-01-17 | 1 | -1/+2 |
|
|
* | REMOVED all CWI, CNRI and BeOpen copyright markings. | Guido van Rossum | 2000-09-01 | 1 | -9/+0 |
|
|
* | The real suport for augmented assignment: new opcodes, new PyNumber and | Thomas Wouters | 2000-08-24 | 1 | -3/+13 |
|
|
* | Charles G. Waldman <cgw@fnal.gov>: | Fred Drake | 2000-08-24 | 1 | -0/+3 |
|
|
* | PEP 214, Extended print Statement, has been accepted by the BDFL. | Barry Warsaw | 2000-08-21 | 1 | -0/+2 |
|
|
* | Apply SF patch #101135, adding 'import module as m' and 'from module import | Thomas Wouters | 2000-08-17 | 1 | -1/+1 |
|
|
* | Merge UNPACK_LIST and UNPACK_TUPLE into a single UNPACK_SEQUENCE, since they | Thomas Wouters | 2000-08-11 | 1 | -2/+2 |
|
|
* | Change copyright notice - 2nd try. | Guido van Rossum | 2000-06-30 | 1 | -6/+0 |
|
|
* | Change copyright notice. | Guido van Rossum | 2000-06-30 | 1 | -22/+7 |
|
|
* | remove reference to CALL_FUNCTION_STAR in comment | Jeremy Hylton | 2000-03-29 | 1 | -1/+1 |
|
|
* | slightly modified version of Greg Ewing's extended call syntax patch | Jeremy Hylton | 2000-03-28 | 1 | -0/+7 |
|
|
* | Get rid of some obsolete opcodes. | Guido van Rossum | 1998-07-07 | 1 | -5/+0 |
|
|
* | Get rid of obsolete ACCESS_MODE opcode. | Guido van Rossum | 1997-05-09 | 1 | -1/+0 |
|
|
* | New permission notice, includes CNRI. | Guido van Rossum | 1996-10-25 | 1 | -13/+20 |
|
|
* | Added BUILD_SLICE opcode. | Guido van Rossum | 1996-07-30 | 1 | -0/+1 |
|
|
* | changes for ** (power) operator | Guido van Rossum | 1996-01-12 | 1 | -0/+2 |
|
|
* | keyword arguments and faster function calls | Guido van Rossum | 1995-07-18 | 1 | -6/+4 |
|
|
* | new opcodes RAISE_VARARGS, CALL_FUNCTION | Guido van Rossum | 1995-07-07 | 1 | -0/+8 |
|
|
* | Added 1995 copyright. | Guido van Rossum | 1995-01-04 | 1 | -2/+2 |
|
|