| Commit message (Expand) | Author | Age | Files | Lines |
* | Make identifiers str (not str8) objects throughout. | Martin v. Löwis | 2007-06-10 | 1 | -13/+11 |
|
|
* | Merged revisions 55631-55794 via svnmerge from | Guido van Rossum | 2007-06-06 | 1 | -12/+0 |
|
|
* | Make the name of the C variables match the Python names | Walter Dörwald | 2007-06-05 | 1 | -7/+7 |
|
|
* | Make input9) behave properly with the new I/O library. | Guido van Rossum | 2007-05-27 | 1 | -14/+66 |
|
|
* | Enable new I/O. Disable creation of old files. | Guido van Rossum | 2007-05-24 | 1 | -14/+1 |
|
|
* | Merged revisions 55407-55513 via svnmerge from | Guido van Rossum | 2007-05-22 | 1 | -14/+0 |
|
|
* | Oops. unicode() builtin was still around. | Guido van Rossum | 2007-05-22 | 1 | -1/+0 |
|
|
* | It's ok for __hex__ or __oct__ to return unicode. | Guido van Rossum | 2007-05-15 | 1 | -2/+2 |
|
|
* | Given that ord() of a bytes object of length 1 is defined, it should | Guido van Rossum | 2007-05-08 | 1 | -1/+1 |
|
|
* | Get rid of 'file' built-in. Get rid of types.StringType and friends. | Guido van Rossum | 2007-05-08 | 1 | -1/+0 |
|
|
* | Merged revisions 55007-55179 via svnmerge from | Guido van Rossum | 2007-05-07 | 1 | -298/+1 |
|
|
* | Add 8-bit chr() back as chr8(). | Guido van Rossum | 2007-05-04 | 1 | -0/+24 |
|
|
* | More coding by random modification. | Guido van Rossum | 2007-05-04 | 1 | -51/+43 |
|
|
* | Get rid of all #ifdef Py_USING_UNICODE (it is always present now). | Guido van Rossum | 2007-05-03 | 1 | -22/+0 |
|
|
* | Kill unichr() itself. | Guido van Rossum | 2007-05-03 | 1 | -3/+0 |
|
|
* | Rename 'unicode' to 'str' in its tp_name field. Rename 'str' to 'str8'. | Guido van Rossum | 2007-05-03 | 1 | -24/+3 |
|
|
* | Checkpoint. Manipulated things so that string literals are always | Guido van Rossum | 2007-04-27 | 1 | -2/+2 |
|
|
* | Merged revisions 53952-54987 via svnmerge from | Guido van Rossum | 2007-04-27 | 1 | -5/+8 |
|
|
* | PEP 3114: rename .next() to .__next__() and add next() builtin. | Georg Brandl | 2007-04-21 | 1 | -0/+41 |
|
|
* | Support marshal.dump(x, f) where f is not a real file. | Guido van Rossum | 2007-04-13 | 1 | -2/+12 |
|
|
* | Implement PEP 3115 -- new metaclass syntax and semantics. | Guido van Rossum | 2007-03-18 | 1 | -0/+109 |
|
|
* | Patch #1591665: implement the __dir__() special function lookup in PyObject_Dir. | Georg Brandl | 2007-03-10 | 1 | -9/+10 |
|
|
* | Add raw_input() back, named input(). Revive the old unittests too. | Guido van Rossum | 2007-02-26 | 1 | -0/+78 |
|
|
* | Fix leak in the print function. | Georg Brandl | 2007-02-26 | 1 | -3/+5 |
|
|
* | * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes. | Georg Brandl | 2007-02-09 | 1 | -1/+1 |
|
|
* | Essential changes for print function changes. | Guido van Rossum | 2007-02-09 | 1 | -2/+2 |
|
|
* | Rip out 'long' and 'L'-suffixed integer literals. | Guido van Rossum | 2007-01-15 | 1 | -1/+0 |
|
|
* | Merged the int/long unification branch, by very crude means (sorry Thomas!). | Guido van Rossum | 2007-01-14 | 1 | -1/+1 |
|
|
* | Patch #1601678: move intern() to sys.intern(). | Georg Brandl | 2006-12-19 | 1 | -26/+0 |
|
|
* | Four months of trunk changes (including a few releases...) | Thomas Wouters | 2006-12-13 | 1 | -3/+4 |
|
|
* | 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 |
|
|
* | Patch #1550800: make exec a function. | Georg Brandl | 2006-09-06 | 1 | -1/+110 |
|
|
* | SF patch 1546297 (with some tweaks): | Guido van Rossum | 2006-08-25 | 1 | -15/+3 |
|
|
* | Make built-in zip() equal to itertools.izip(). | Guido van Rossum | 2006-08-24 | 1 | -102/+18 |
|
|
* | Make it compile with C89. | Guido van Rossum | 2006-08-24 | 1 | -1/+2 |
|
|
* | Restructure comparison dramatically. There is no longer a default | Guido van Rossum | 2006-08-24 | 1 | -12/+16 |
|
|
* | Kill reduce(). A coproduction of John Reese, Jacques Frechet, and Alex M. | Guido van Rossum | 2006-08-22 | 1 | -75/+0 |
|
|
* | Merge current trunk into p3yk. This includes the PyNumber_Index API change, | Thomas Wouters | 2006-08-21 | 1 | -2/+2 |
|
|
* | Get rid of most of the rest of coerce (slot is still there for now). | Neal Norwitz | 2006-08-21 | 1 | -25/+0 |
|
|
* | Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. | Thomas Wouters | 2006-05-27 | 1 | -4/+14 |
|
|
* | Here is a bytes type. It's very minimal but it's a start. | Guido van Rossum | 2006-04-22 | 1 | -0/+1 |
|
|
* | Merge p3yk branch with the trunk up to revision 45595. This breaks a fair | Thomas Wouters | 2006-04-21 | 1 | -19/+26 |
|
|
* | Remove apply() | Neal Norwitz | 2006-03-17 | 1 | -45/+0 |
|
|
* | Whoops, input *and* raw_input are slated for removal, and now both are gone. | Neal Norwitz | 2006-03-17 | 1 | -86/+0 |
|
|
* | raw_input() -> input(). old input behavior is history (and test_builtin pass... | Neal Norwitz | 2006-03-17 | 1 | -110/+72 |
|
|
* | Change int to Py_ssize_t in several places. | Martin v. Löwis | 2006-03-07 | 1 | -1/+1 |
|
|
* | SF patch #1438387, PEP 328: relative and absolute imports. | Thomas Wouters | 2006-02-28 | 1 | -3/+5 |
|
|
* | Revert backwards-incompatible const changes. | Martin v. Löwis | 2006-02-27 | 1 | -1/+1 |
|
|
* | Generate code to recursively copy an AST into | Martin v. Löwis | 2006-02-26 | 1 | -1/+1 |
|
|