| Commit message (Expand) | Author | Age | Files | Lines |
* | Merged revisions 61538-61540,61556,61559-61560,61563,61565,61571,61575-61576,... | Christian Heimes | 2008-03-19 | 1 | -4/+0 |
|
|
* | Merged revisions 61239-61249,61252-61257,61260-61264,61269-61275,61278-61279,... | Christian Heimes | 2008-03-16 | 1 | -0/+4 |
|
|
* | Patch from Georg Brandl: Fix co_lineno of decorated function and class object... | Christian Heimes | 2008-02-23 | 1 | -0/+6 |
|
|
* | More PyImport_ImportModule -> PyImport_ImportModuleNoBlock | Christian Heimes | 2008-01-03 | 1 | -1/+1 |
|
|
* | #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. | Christian Heimes | 2007-12-19 | 1 | -1/+1 |
|
|
* | Issue #1573, second attempt: | Amaury Forgeot d'Arc | 2007-12-09 | 1 | -3/+8 |
|
|
* | Fixed #1573: Improper use of the keyword-only syntax makes the parser crash | Christian Heimes | 2007-12-08 | 1 | -2/+2 |
|
|
* | Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i... | Christian Heimes | 2007-12-02 | 1 | -2/+2 |
|
|
* | Merged revisions 59107-59186 via svnmerge from | Guido van Rossum | 2007-11-26 | 1 | -0/+2 |
|
|
* | PyString_AsString is permissive and accepts unicode strings. | Amaury Forgeot d'Arc | 2007-11-22 | 1 | -1/+1 |
|
|
* | Minimal change that disables (AFAICT) the interpolation of \u and \U inside | Guido van Rossum | 2007-11-12 | 1 | -8/+12 |
|
|
* | Merging the py3k-pep3137 branch back into the py3k branch. | Guido van Rossum | 2007-11-06 | 1 | -5/+4 |
|
|
* | Merged revisions 58221-58741 via svnmerge from | Guido van Rossum | 2007-11-01 | 1 | -1/+1 |
|
|
* | Issue #1066: implement PEP 3109, 2/3 of PEP 3134. | Collin Winter | 2007-08-31 | 1 | -30/+9 |
|
|
* | Implement PEP 3131. Add isidentifier to str. | Martin v. Löwis | 2007-08-15 | 1 | -1/+20 |
|
|
* | Remove obsolete ifdef. | Martin v. Löwis | 2007-08-11 | 1 | -2/+0 |
|
|
* | Merged revisions 56782-56847 via svnmerge from | Guido van Rossum | 2007-08-09 | 1 | -0/+2 |
|
|
* | Implement PEP 3120. | Martin v. Löwis | 2007-07-29 | 1 | -1/+2 |
|
|
* | Merged revisions 56301-56442 via svnmerge from | Guido van Rossum | 2007-07-18 | 1 | -2/+19 |
|
|
* | Merged revisions 56154-56264 via svnmerge from | Guido van Rossum | 2007-07-11 | 1 | -44/+81 |
|
|
* | Merged revisions 55817-55961 via svnmerge from | Guido van Rossum | 2007-06-13 | 1 | -35/+0 |
|
|
* | Minimal changes to make the "freeze" tool work again. | Guido van Rossum | 2007-06-12 | 1 | -0/+3 |
|
|
* | Make identifiers str (not str8) objects throughout. | Martin v. Löwis | 2007-06-10 | 1 | -8/+15 |
|
|
* | Merged revisions 55631-55794 via svnmerge from | Guido van Rossum | 2007-06-06 | 1 | -8/+31 |
|
|
* | Merged revisions 55407-55513 via svnmerge from | Guido van Rossum | 2007-05-22 | 1 | -22/+38 |
|
|
* | Merged revisions 55328-55341 via svnmerge from | Guido van Rossum | 2007-05-15 | 1 | -82/+29 |
|
|
* | Merged revisions 55325-55327 via svnmerge from | Guido van Rossum | 2007-05-14 | 1 | -0/+4 |
|
|
* | Merged revisions 55225-55227,55229-55269 via svnmerge from | Guido van Rossum | 2007-05-11 | 1 | -0/+28 |
|
|
* | Remove support for u"..." literals. | Guido van Rossum | 2007-05-11 | 1 | -10/+1 |
|
|
* | More coding by random modification. | Guido van Rossum | 2007-05-04 | 1 | -2/+3 |
|
|
* | Get rid of all #ifdef Py_USING_UNICODE (it is always present now). | Guido van Rossum | 2007-05-03 | 1 | -16/+0 |
|
|
* | Checkpoint. Manipulated things so that string literals are always | Guido van Rossum | 2007-04-27 | 1 | -1/+1 |
|
|
* | Merged revisions 53952-54987 via svnmerge from | Guido van Rossum | 2007-04-27 | 1 | -320/+330 |
|
|
* | Allow decorators and return annotations to be used together (fixes SF#1697248) | Nick Coghlan | 2007-04-23 | 1 | -1/+1 |
|
|
* | Make it compile with C89. | Guido van Rossum | 2007-04-17 | 1 | -1/+2 |
|
|
* | Hide list comp variables and support set comprehensions | Nick Coghlan | 2007-04-15 | 1 | -255/+111 |
|
|
* | "from ... import x" should not be a syntax error... make | Georg Brandl | 2007-03-19 | 1 | -2/+6 |
|
|
* | Make ELLIPSIS a separate token. This makes it a syntax error to write ". . ... | Georg Brandl | 2007-03-18 | 1 | -1/+1 |
|
|
* | Implement PEP 3115 -- new metaclass syntax and semantics. | Guido van Rossum | 2007-03-18 | 1 | -38/+21 |
|
|
* | Provisional implementation of PEP 3104. | Jeremy Hylton | 2007-02-27 | 1 | -2/+25 |
|
|
* | Whoops, fix build breakage. There were still a few uses of the bool type. | Neal Norwitz | 2007-02-26 | 1 | -2/+2 |
|
|
* | Bytes literal. | Thomas Wouters | 2007-02-23 | 1 | -9/+41 |
|
|
* | Essential changes for print function changes. | Guido van Rossum | 2007-02-09 | 1 | -34/+1 |
|
|
* | Some more changes related to the new except syntax and semantics, | Guido van Rossum | 2007-01-10 | 1 | -3/+1 |
|
|
* | PEP 3107 - Function Annotations thanks to Tony Lownds | Neal Norwitz | 2006-12-28 | 1 | -130/+173 |
|
|
* | Four months of trunk changes (including a few releases...) | Thomas Wouters | 2006-12-13 | 1 | -762/+780 |
|
|
* | Jiwon Seo's PEP 3102 implementation. | Guido van Rossum | 2006-10-27 | 1 | -63/+178 |
|
|
* | Patch #1550786: ellipsis literal. | Georg Brandl | 2006-09-06 | 1 | -4/+7 |
|
|
* | Patch #1550800: make exec a function. | Georg Brandl | 2006-09-06 | 1 | -35/+1 |
|
|
* | SF patch 1547796 by Georg Brandl -- set literals. | Guido van Rossum | 2006-08-28 | 1 | -24/+44 |
|
|