| Commit message (Expand) | Author | Age | Files | Lines |
* | PEP 3114: rename .next() to .__next__() and add next() builtin. | Georg Brandl | 2007-04-21 | 1 | -3/+30 |
|
|
* | Patch #1591665: implement the __dir__() special function lookup in PyObject_Dir. | Georg Brandl | 2007-03-10 | 1 | -4/+59 |
|
|
* | Add raw_input() back, named input(). Revive the old unittests too. | Guido van Rossum | 2007-02-26 | 1 | -0/+40 |
|
|
* | Another fix. Partly reverted the tweaks done by the previous fix. | Guido van Rossum | 2007-02-11 | 1 | -6/+6 |
|
|
* | - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; | Guido van Rossum | 2007-02-11 | 1 | -8/+8 |
|
|
* | Fix most trivially-findable print statements. | Guido van Rossum | 2007-02-09 | 1 | -6/+6 |
|
|
* | Rip out 'long' and 'L'-suffixed integer literals. | Guido van Rossum | 2007-01-15 | 1 | -230/+230 |
|
|
* | Merged the int/long unification branch, by very crude means (sorry Thomas!). | Guido van Rossum | 2007-01-14 | 1 | -3/+5 |
|
|
* | Patch #1601678: move intern() to sys.intern(). | Georg Brandl | 2006-12-19 | 1 | -24/+0 |
|
|
* | Four months of trunk changes (including a few releases...) | Thomas Wouters | 2006-12-13 | 1 | -2/+15 |
|
|
* | - patch #1600346 submitted by Tomer Filiba | Jack Diederich | 2006-11-28 | 1 | -1/+1 |
|
|
* | Patch #1550800: make exec a function. | Georg Brandl | 2006-09-06 | 1 | -2/+25 |
|
|
* | Make built-in zip() equal to itertools.izip(). | Guido van Rossum | 2006-08-24 | 1 | -8/+8 |
|
|
* | Restructure comparison dramatically. There is no longer a default | Guido van Rossum | 2006-08-24 | 1 | -5/+15 |
|
|
* | Kill reduce(). A coproduction of John Reese, Jacques Frechet, and Alex M. | Guido van Rossum | 2006-08-22 | 1 | -26/+0 |
|
|
* | Get rid of most of the rest of coerce (slot is still there for now). | Neal Norwitz | 2006-08-21 | 1 | -11/+0 |
|
|
* | Get rid of dict.has_key(). Boy this has a lot of repercussions! | Guido van Rossum | 2006-08-18 | 1 | -5/+5 |
|
|
* | Merged revisions 46753-51188 via svnmerge from | Thomas Wouters | 2006-08-11 | 1 | -3/+27 |
|
|
* | Merge the rest of the trunk. | Thomas Wouters | 2006-06-08 | 1 | -1/+1 |
|
|
* | Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. | Thomas Wouters | 2006-05-27 | 1 | -24/+165 |
|
|
* | Merge p3yk branch with the trunk up to revision 45595. This breaks a fair | Thomas Wouters | 2006-04-21 | 1 | -0/+4 |
|
|
* | Remove apply() | Neal Norwitz | 2006-03-17 | 1 | -26/+0 |
|
|
* | Whoops, input *and* raw_input are slated for removal, and now both are gone. | Neal Norwitz | 2006-03-17 | 1 | -31/+0 |
|
|
* | raw_input() -> input(). old input behavior is history (and test_builtin pass... | Neal Norwitz | 2006-03-17 | 1 | -22/+9 |
|
|
* | Correct test_builtin locale handling. | Georg Brandl | 2006-01-09 | 1 | -1/+1 |
|
|
* | Get float() to be more portable across platforms. Disable hex strings. | Neal Norwitz | 2005-12-18 | 1 | -2/+4 |
|
|
* | Test another error case in PyFloat_FromString(). | Walter Dörwald | 2005-11-29 | 1 | -0/+2 |
|
|
* | Improve test coverage. Hope the test_file changes work the same on windows. | Neal Norwitz | 2005-11-27 | 1 | -0/+13 |
|
|
* | improve test coverage in Python/pystrtod.c and Python/mystrtoul.c. | Neal Norwitz | 2005-11-22 | 1 | -0/+29 |
|
|
* | Disable a few other tests, that can't work if Python is compiled without | Walter Dörwald | 2005-08-03 | 1 | -5/+14 |
|
|
* | Make subclasses of int, long, complex, float, and unicode perform type | Brett Cannon | 2005-04-26 | 1 | -0/+97 |
|
|
* | Add two new functions, any() and all(). | Raymond Hettinger | 2005-03-11 | 1 | -0/+36 |
|
|
* | Use decorators. | Guido van Rossum | 2005-01-16 | 1 | -3/+4 |
|
|
* | Whitespace normalization. | Tim Peters | 2004-12-07 | 1 | -13/+13 |
|
|
* | SF patch #1077353: add key= argument to min and max | Raymond Hettinger | 2004-12-03 | 1 | -4/+75 |
|
|
* | Improve test coverage. | Raymond Hettinger | 2004-09-30 | 1 | -0/+3 |
|
|
* | Checkin Tim's fix to an error discussed on python-dev. | Raymond Hettinger | 2004-09-26 | 1 | -0/+5 |
|
|
* | Subclasses of string can no longer be interned. The semantics of | Jeremy Hylton | 2004-08-07 | 1 | -0/+17 |
|
|
* | SF bug #1004669: Type returned from .keys() is not checked | Raymond Hettinger | 2004-08-07 | 1 | -0/+9 |
|
|
* | Completed the patch for Bug #215126. | Raymond Hettinger | 2004-08-02 | 1 | -0/+25 |
|
|
* | * Fix missing return after error message is set. | Raymond Hettinger | 2004-07-06 | 1 | -0/+1 |
|
|
* | SF Bug #215126: Over restricted type checking on eval() function | Raymond Hettinger | 2004-07-02 | 1 | -1/+55 |
|
|
* | Replace backticks with repr() or "%r" | Walter Dörwald | 2004-02-12 | 1 | -2/+2 |
|
|
* | Fix input() builtin function to respect compiler flags. | Hye-Shik Chang | 2004-02-02 | 1 | -0/+13 |
|
|
* | Guido grants a Christmas wish: | Raymond Hettinger | 2003-12-17 | 1 | -2/+35 |
|
|
* | - Removed FutureWarnings related to hex/oct literals and conversions | Guido van Rossum | 2003-11-29 | 1 | -3/+2 |
|
|
* | * Migrate set() and frozenset() from the sandbox. | Raymond Hettinger | 2003-11-16 | 1 | -3/+2 |
|
|
* | Deleting cyclic object comparison. | Armin Rigo | 2003-10-28 | 1 | -6/+6 |
|
|
* | Make a copy of L before appending, so the global L remains | Walter Dörwald | 2003-08-15 | 1 | -4/+4 |
|
|
* | As discussed on python-dev, changed builtin.zip() to handle zero arguments | Raymond Hettinger | 2003-08-02 | 1 | -1/+2 |
|
|