| Commit message (Expand) | Author | Age | Files | Lines |
* | More raise statement normalization. | Collin Winter | 2007-08-30 | 1 | -1/+1 |
|
|
* | Fix an outdated URL in a SyntaxError message. | Guido van Rossum | 2007-08-30 | 1 | -1/+1 |
|
|
* | Fix issue # 1037 (sort of). | Guido van Rossum | 2007-08-29 | 1 | -2/+8 |
|
|
* | Add PyUnicode_AsStringAndSize(), which is like PyUnicode_AsString() but | Guido van Rossum | 2007-08-29 | 1 | -1/+2 |
|
|
* | Use unicode for AST attributes | Neal Norwitz | 2007-08-25 | 1 | -2/+2 |
|
|
* | Remove RISCOS support | Skip Montanaro | 2007-08-16 | 3 | -21/+0 |
|
|
* | Implement PEP 3131. Add isidentifier to str. | Martin v. Löwis | 2007-08-15 | 1 | -3/+26 |
|
|
* | Fix refleaks from execfile('file that contains a # coding: line') | Neal Norwitz | 2007-08-12 | 1 | -11/+21 |
|
|
* | Fix problem when exec'ing a string with a coding | Neal Norwitz | 2007-08-11 | 1 | -1/+1 |
|
|
* | Implement PEP 3120. | Martin v. Löwis | 2007-07-29 | 1 | -5/+34 |
|
|
* | Merged revisions 56154-56264 via svnmerge from | Guido van Rossum | 2007-07-11 | 1 | -1/+2 |
|
|
* | Merged revisions 55817-55961 via svnmerge from | Guido van Rossum | 2007-06-13 | 1 | -12/+21 |
|
|
* | Rip out the file object's implementation. | Guido van Rossum | 2007-06-12 | 1 | -64/+0 |
|
|
* | Make identifiers str (not str8) objects throughout. | Martin v. Löwis | 2007-06-10 | 1 | -2/+13 |
|
|
* | tokenizer.c: make coding markup work again. | Guido van Rossum | 2007-06-07 | 1 | -13/+17 |
|
|
* | Merged revisions 55407-55513 via svnmerge from | Guido van Rossum | 2007-05-22 | 1 | -2/+3 |
|
|
* | Merged revisions 55328-55341 via svnmerge from | Guido van Rossum | 2007-05-15 | 3 | -39/+51 |
|
|
* | Merged revisions 55225-55227,55229-55269 via svnmerge from | Guido van Rossum | 2007-05-11 | 1 | -0/+1 |
|
|
* | Use AsCharBuffer to get a C string out of a Python string. | Guido van Rossum | 2007-05-09 | 1 | -29/+16 |
|
|
* | Kill u"..." string quotes. Thought I already did that. | Guido van Rossum | 2007-05-08 | 1 | -8/+0 |
|
|
* | Merged revisions 55007-55179 via svnmerge from | Guido van Rossum | 2007-05-07 | 3 | -48/+64 |
|
|
* | More coding by random modification. | Guido van Rossum | 2007-05-04 | 1 | -3/+3 |
|
|
* | Get rid of all #ifdef Py_USING_UNICODE (it is always present now). | Guido van Rossum | 2007-05-03 | 1 | -22/+2 |
|
|
* | Hide list comp variables and support set comprehensions | Nick Coghlan | 2007-04-15 | 1 | -0/+1 |
|
|
* | Make ELLIPSIS a separate token. This makes it a syntax error to write ". . ... | Georg Brandl | 2007-03-18 | 1 | -5/+25 |
|
|
* | Implement PEP 3115 -- new metaclass syntax and semantics. | Guido van Rossum | 2007-03-18 | 1 | -1/+6 |
|
|
* | Provisional implementation of PEP 3104. | Jeremy Hylton | 2007-02-27 | 1 | -0/+1 |
|
|
* | bool is no longer required, it was only used for the print statement | Neal Norwitz | 2007-02-26 | 2 | -8/+3 |
|
|
* | Merged revisions 53912-53951 via svnmerge from | Thomas Wouters | 2007-02-26 | 1 | -4/+2 |
|
|
* | Touch file to regenerate Python-ast.[ch] | Thomas Wouters | 2007-02-23 | 1 | -0/+1 |
|
|
* | Bytes literal. | Thomas Wouters | 2007-02-23 | 2 | -0/+9 |
|
|
* | Merged revisions 53623-53858 via svnmerge from | Thomas Wouters | 2007-02-23 | 2 | -3/+20 |
|
|
* | * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes. | Georg Brandl | 2007-02-09 | 1 | -3/+0 |
|
|
* | Merged revisions 53451-53537 via svnmerge from | Thomas Wouters | 2007-02-01 | 1 | -1/+6 |
|
|
* | Rip out 'long' and 'L'-suffixed integer literals. | Guido van Rossum | 2007-01-15 | 1 | -5/+1 |
|
|
* | Some more changes related to the new except syntax and semantics, | Guido van Rossum | 2007-01-10 | 1 | -1/+1 |
|
|
* | avoid dict.has_key, since this might get used by a Py3K built in the | Fred Drake | 2006-12-29 | 2 | -15/+15 |
|
|
* | PEP 3107 - Function Annotations thanks to Tony Lownds | Neal Norwitz | 2006-12-28 | 2 | -3/+9 |
|
|
* | Four months of trunk changes (including a few releases...) | Thomas Wouters | 2006-12-13 | 3 | -14/+16 |
|
|
* | Jiwon Seo's PEP 3102 implementation. | Guido van Rossum | 2006-10-27 | 1 | -2/+2 |
|
|
* | Patch #1550786: ellipsis literal. | Georg Brandl | 2006-09-06 | 1 | -1/+2 |
|
|
* | Patch #1550800: make exec a function. | Georg Brandl | 2006-09-06 | 1 | -5/+0 |
|
|
* | SF patch 1547796 by Georg Brandl -- set literals. | Guido van Rossum | 2006-08-28 | 1 | -0/+1 |
|
|
* | Remove the UNARY_CONVERT opcode (was used for backticks). Also bumped up the | Brett Cannon | 2006-08-25 | 1 | -1/+0 |
|
|
* | Remove support for backticks from the grammar and compiler. | Brett Cannon | 2006-08-25 | 1 | -2/+0 |
|
|
* | Switch to using %r in the format string. | Brett Cannon | 2006-08-25 | 2 | -2/+2 |
|
|
* | Get rid of all two uses of backticks (bad Jeremy!). | Brett Cannon | 2006-08-24 | 2 | -2/+2 |
|
|
* | Killed the <> operator. You must now use !=. | Guido van Rossum | 2006-08-24 | 1 | -1/+0 |
|
|
* | Merge current trunk into p3yk. This includes the PyNumber_Index API change, | Thomas Wouters | 2006-08-21 | 2 | -0/+10 |
|
|
* | Merge the rest of the trunk. | Thomas Wouters | 2006-06-08 | 1 | -1/+1 |
|
|