| Commit message (Expand) | Author | Age | Files | Lines |
* | Patch #1680961: remove sys.exitfunc and replace it with a private C API. Also... | Collin Winter | 2007-03-21 | 3 | -27/+20 |
|
|
* | "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 | 2 | -79/+72 |
|
|
* | Update the silly version number. | Guido van Rossum | 2007-03-18 | 1 | -2/+2 |
|
|
* | Implement PEP 3115 -- new metaclass syntax and semantics. | Guido van Rossum | 2007-03-18 | 8 | -166/+303 |
|
|
* | Patch #1591665: implement the __dir__() special function lookup in PyObject_Dir. | Georg Brandl | 2007-03-10 | 1 | -9/+10 |
|
|
* | Commit version bump. | Brett Cannon | 2007-02-27 | 1 | -2/+2 |
|
|
* | SF patch #1669633, add methods for bytes from Pete Shinners. | Neal Norwitz | 2007-02-27 | 1 | -0/+4 |
|
|
* | Provisional implementation of PEP 3104. | Jeremy Hylton | 2007-02-27 | 5 | -802/+932 |
|
|
* | Remove the exceptions builtin module, all the exceptions are already builtin. | Neal Norwitz | 2007-02-26 | 2 | -3/+3 |
|
|
* | 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 | 3 | -37/+35 |
|
|
* | You can no longer catch non-BaseException objects; TypeError is raised if such | Brett Cannon | 2007-02-26 | 1 | -19/+23 |
|
|
* | Whoops, fix build breakage. There were still a few uses of the bool type. | Neal Norwitz | 2007-02-26 | 3 | -15/+11 |
|
|
* | Merged revisions 53912-53951 via svnmerge from | Thomas Wouters | 2007-02-26 | 2 | -173/+63 |
|
|
* | Add raw_input() back, named input(). Revive the old unittests too. | Guido van Rossum | 2007-02-26 | 1 | -0/+78 |
|
|
* | Fix a refleak in the MAKE_FUNCTION opcode in ceval.c. | Georg Brandl | 2007-02-26 | 1 | -0/+2 |
|
|
* | Fix leak in the print function. | Georg Brandl | 2007-02-26 | 1 | -3/+5 |
|
|
* | Make bytes_repr return a string containing a b"" literal. | Georg Brandl | 2007-02-24 | 1 | -1/+2 |
|
|
* | Prevent regeneration. | Thomas Wouters | 2007-02-23 | 1 | -2/+2 |
|
|
* | Bytes literal. | Thomas Wouters | 2007-02-23 | 4 | -12/+99 |
|
|
* | Merged revisions 53623-53858 via svnmerge from | Thomas Wouters | 2007-02-23 | 1 | -2/+11 |
|
|
* | Checkin the regenerated Python-ast.c and fix test_optparse. | Georg Brandl | 2007-02-11 | 1 | -1/+1 |
|
|
* | Fix test_frozen. | Guido van Rossum | 2007-02-09 | 1 | -8/+9 |
|
|
* | Kill off softspace completely (except in formatter.py which seems to have | Guido van Rossum | 2007-02-09 | 3 | -30/+1 |
|
|
* | * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes. | Georg Brandl | 2007-02-09 | 6 | -177/+2 |
|
|
* | Essential changes for print function changes. | Guido van Rossum | 2007-02-09 | 4 | -1013/+931 |
|
|
* | Merged revisions 53538-53622 via svnmerge from | Thomas Wouters | 2007-02-05 | 1 | -2/+32 |
|
|
* | Merged revisions 53451-53537 via svnmerge from | Thomas Wouters | 2007-02-01 | 3 | -7/+10 |
|
|
* | Fix minor grammar typo. | Brett Cannon | 2007-01-29 | 1 | -1/+1 |
|
|
* | Rip out 'long' and 'L'-suffixed integer literals. | Guido van Rossum | 2007-01-15 | 1 | -1/+0 |
|
|
* | Merged revisions 53304-53433,53435-53450 via svnmerge from | Thomas Wouters | 2007-01-15 | 1 | -1/+1 |
|
|
* | Merged the int/long unification branch, by very crude means (sorry Thomas!). | Guido van Rossum | 2007-01-14 | 6 | -29/+32 |
|
|
* | Some more changes related to the new except syntax and semantics, | Guido van Rossum | 2007-01-10 | 5 | -19/+11 |
|
|
* | SF patch 1631942 by Collin Winter: | Guido van Rossum | 2007-01-10 | 2 | -4/+57 |
|
|
* | Merged revisions 53005-53303 via svnmerge from | Thomas Wouters | 2007-01-09 | 3 | -3/+13 |
|
|
* | Commit __version__ change. | Martin v. Löwis | 2007-01-06 | 1 | -1/+1 |
|
|
* | Update the magic number now that signature annotations were added. | Guido van Rossum | 2006-12-28 | 1 | -1/+2 |
|
|
* | PEP 3107 - Function Annotations thanks to Tony Lownds | Neal Norwitz | 2006-12-28 | 6 | -1422/+1927 |
|
|
* | Remove PyFloat_AsReprString() and PyFloat_AsString() which should not | Neal Norwitz | 2006-12-28 | 1 | -20/+6 |
|
|
* | Patch #1601678: move intern() to sys.intern(). | Georg Brandl | 2006-12-19 | 2 | -26/+27 |
|
|
* | Oops, re-add 'static' qualifier. | Thomas Wouters | 2006-12-13 | 1 | -1/+1 |
|
|
* | Regenerate frozen.c's manual marshal as directed, fixing test_frozen. | Thomas Wouters | 2006-12-13 | 1 | -8/+9 |
|
|
* | Four months of trunk changes (including a few releases...) | Thomas Wouters | 2006-12-13 | 15 | -962/+1028 |
|
|
* | Check "sep" and "end" for stringness in Print(). | Georg Brandl | 2006-11-30 | 1 | -1/+14 |
|
|
* | Add built-in Print() function. This is PEP 3105 except for the name; | Guido van Rossum | 2006-11-30 | 1 | -0/+55 |
|
|
* | 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 | 8 | -105/+363 |
|
|
* | Patch #1550786: ellipsis literal. | Georg Brandl | 2006-09-06 | 5 | -106/+106 |
|
|
* | Patch #1550800: make exec a function. | Georg Brandl | 2006-09-06 | 7 | -1047/+873 |
|
|