| Commit message (Expand) | Author | Age | Files | Lines |
* | Whoops, fix build breakage. There were still a few uses of the bool type. | Neal Norwitz | 2007-02-26 | 1 | -4/+0 |
|
|
* | Merged revisions 53875-53911 via svnmerge from | Thomas Wouters | 2007-02-25 | 8 | -13/+31 |
|
|
* | Make bytes_repr return a string containing a b"" literal. | Georg Brandl | 2007-02-24 | 1 | -1/+0 |
|
|
* | Prevent regeneration. | Thomas Wouters | 2007-02-23 | 1 | -0/+1 |
|
|
* | Bytes literal. | Thomas Wouters | 2007-02-23 | 2 | -4/+10 |
|
|
* | Merged revisions 53623-53858 via svnmerge from | Thomas Wouters | 2007-02-23 | 2 | -1/+4 |
|
|
* | - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; | Guido van Rossum | 2007-02-11 | 1 | -22/+13 |
|
|
* | Kill off softspace completely (except in formatter.py which seems to have | Guido van Rossum | 2007-02-09 | 2 | -4/+0 |
|
|
* | * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes. | Georg Brandl | 2007-02-09 | 2 | -19/+6 |
|
|
* | Essential changes for print function changes. | Guido van Rossum | 2007-02-09 | 1 | -68/+67 |
|
|
* | Merged revisions 53451-53537 via svnmerge from | Thomas Wouters | 2007-02-01 | 2 | -90/+150 |
|
|
* | Merged the int/long unification branch, by very crude means (sorry Thomas!). | Guido van Rossum | 2007-01-14 | 4 | -25/+22 |
|
|
* | Some more changes related to the new except syntax and semantics, | Guido van Rossum | 2007-01-10 | 1 | -3/+3 |
|
|
* | PEP 3107 - Function Annotations thanks to Tony Lownds | Neal Norwitz | 2006-12-28 | 4 | -83/+118 |
|
|
* | Cruft removal: | Neal Norwitz | 2006-12-28 | 2 | -91/+1 |
|
|
* | Remove PyFloat_AsReprString() and PyFloat_AsString() which should not | Neal Norwitz | 2006-12-28 | 1 | -14/+5 |
|
|
* | Patch #1601678: move intern() to sys.intern(). | Georg Brandl | 2006-12-19 | 1 | -1/+1 |
|
|
* | Four months of trunk changes (including a few releases...) | Thomas Wouters | 2006-12-13 | 3 | -3/+17 |
|
|
* | - patch #1600346 submitted by Tomer Filiba | Jack Diederich | 2006-11-28 | 1 | -1/+1 |
|
|
* | Jiwon Seo's PEP 3102 implementation. | Guido van Rossum | 2006-10-27 | 4 | -5/+15 |
|
|
* | Patch #1550786: ellipsis literal. | Georg Brandl | 2006-09-06 | 1 | -4/+5 |
|
|
* | Patch #1550800: make exec a function. | Georg Brandl | 2006-09-06 | 4 | -66/+55 |
|
|
* | Get rid of more coerce cruft (really check in this time :-) | Neal Norwitz | 2006-08-29 | 1 | -1/+0 |
|
|
* | Get rid of some more cases of backquotes. parsermodule.c doesn't compile | Neal Norwitz | 2006-08-29 | 1 | -1/+1 |
|
|
* | SF patch 1547796 by Georg Brandl -- set literals. | Guido van Rossum | 2006-08-28 | 3 | -10/+16 |
|
|
* | SF patch 1546297 (with some tweaks): | Guido van Rossum | 2006-08-25 | 1 | -0/+3 |
|
|
* | Remove the UNARY_CONVERT opcode (was used for backticks). Also bumped up the | Brett Cannon | 2006-08-25 | 2 | -9/+2 |
|
|
* | Restructure comparison dramatically. There is no longer a default | Guido van Rossum | 2006-08-24 | 1 | -0/+1 |
|
|
* | Change the way __hash__ is inherited; when __eq__ or __cmp__ is overridden | Guido van Rossum | 2006-08-21 | 1 | -0/+1 |
|
|
* | Merge current trunk into p3yk. This includes the PyNumber_Index API change, | Thomas Wouters | 2006-08-21 | 6 | -5/+46 |
|
|
* | Get rid of most of the rest of coerce (slot is still there for now). | Neal Norwitz | 2006-08-21 | 2 | -19/+0 |
|
|
* | Get rid of dict.has_key(). Boy this has a lot of repercussions! | Guido van Rossum | 2006-08-18 | 1 | -2/+2 |
|
|
* | Completely get rid of PyClass and PyInstance. | Guido van Rossum | 2006-08-17 | 5 | -58/+9 |
|
|
* | Merged revisions 46753-51188 via svnmerge from | Thomas Wouters | 2006-08-11 | 10 | -14/+33 |
|
|
* | Get rid of most of the flags (in tp_flags) that keep track of various | Guido van Rossum | 2006-07-27 | 3 | -50/+6 |
|
|
* | Merge the rest of the trunk. | Thomas Wouters | 2006-06-08 | 2 | -0/+7 |
|
|
* | Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn | Thomas Wouters | 2006-06-08 | 3 | -14/+32 |
|
|
* | Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. | Thomas Wouters | 2006-05-27 | 8 | -15/+181 |
|
|
* | Optimizations for bytes reallocation. | Guido van Rossum | 2006-05-05 | 1 | -0/+1 |
|
|
* | Added much functionality to the bytes type. | Guido van Rossum | 2006-04-24 | 1 | -2/+3 |
|
|
* | Here is a bytes type. It's very minimal but it's a start. | Guido van Rossum | 2006-04-22 | 2 | -0/+48 |
|
|
* | Merge p3yk branch with the trunk up to revision 45595. This breaks a fair | Thomas Wouters | 2006-04-21 | 13 | -57/+179 |
|
|
* | Merge part of the trunk changes into the p3yk branch. This merges from 43030 | Thomas Wouters | 2006-04-21 | 1 | -4/+18 |
|
|
* | Get rid of remnants of integer division | Neal Norwitz | 2006-03-24 | 1 | -3/+0 |
|
|
* | Remove staticforward and statichere | Neal Norwitz | 2006-03-22 | 1 | -15/+0 |
|
|
* | Remove PyArg_NoArgs() and PyArg_GetInt() | Neal Norwitz | 2006-03-17 | 1 | -7/+0 |
|
|
* | INPLACE_DIVIDE is no longer necessary (INPLACE_TRUE_DIVIDE is used). | Neal Norwitz | 2006-03-17 | 1 | -1/+1 |
|
|
* | _Py_QnewFlag and INPLACE_DIVIDE are not necessary any longer | Neal Norwitz | 2006-03-17 | 1 | -4/+0 |
|
|
* | This gets at least test_cmd_line working again and a few more modules built. | Neal Norwitz | 2006-03-17 | 1 | -1/+1 |
|
|
* | Remove some old types for int based functions (Py_ssize_t is da thing now.) | Neal Norwitz | 2006-03-17 | 1 | -9/+0 |
|
|