| Commit message (Expand) | Author | Age | Files | Lines |
* | Merged revisions 59107-59186 via svnmerge from | Guido van Rossum | 2007-11-26 | 157 | -491/+862 |
|
|
* | Minor cleanup | Christian Heimes | 2007-11-26 | 1 | -1/+1 |
|
|
* | Patch from Georg Brandl and me for #1493 | Christian Heimes | 2007-11-25 | 19 | -115/+65 |
|
|
* | Fixed bug in input() which broke pdb | Christian Heimes | 2007-11-25 | 1 | -1/+1 |
|
|
* | #1479: Fix refleak in csv module (from rev 59062). | Georg Brandl | 2007-11-25 | 1 | -6/+5 |
|
|
* | #1480: fix refleak in the sqlite module. | Georg Brandl | 2007-11-25 | 1 | -4/+5 |
|
|
* | Remove unused variable. | Georg Brandl | 2007-11-25 | 1 | -1/+0 |
|
|
* | Use proper API for iter.__next__(). | Georg Brandl | 2007-11-24 | 1 | -8/+3 |
|
|
* | Added a simple helper script to build the dependencies of _tkinter. | Christian Heimes | 2007-11-24 | 1 | -0/+79 |
|
|
* | Updated readme.txt | Christian Heimes | 2007-11-24 | 5 | -230/+87 |
|
|
* | Fixed a newline problem | Christian Heimes | 2007-11-24 | 1 | -0/+2 |
|
|
* | fix #1409: cell variables were not initialized, | Amaury Forgeot d'Arc | 2007-11-24 | 2 | -1/+12 |
|
|
* | Open output files in text mode, after all they are text files. | Guido van Rossum | 2007-11-23 | 1 | -2/+2 |
|
|
* | Paul had the great idea to add /DNO_TCL to the pre-build step. | Christian Heimes | 2007-11-23 | 1 | -8/+16 |
|
|
* | Implemented request from Marc-Andre Lemburg | Christian Heimes | 2007-11-23 | 1 | -0/+5 |
|
|
* | Added code to pre-generate makefiles and assembly files to build_ssl.py | Christian Heimes | 2007-11-23 | 5 | -19/+83 |
|
|
* | Cleanup | Christian Heimes | 2007-11-23 | 1 | -1/+0 |
|
|
* | Just inline a function, and discover that it can only raise an exception. | Amaury Forgeot d'Arc | 2007-11-22 | 1 | -14/+7 |
|
|
* | Stream functions like read() are supposed to return bytes, not buffer. | Amaury Forgeot d'Arc | 2007-11-22 | 1 | -17/+9 |
|
|
* | Problem found while converting from PyBytes to PyString: | Amaury Forgeot d'Arc | 2007-11-22 | 2 | -11/+22 |
|
|
* | Fix, thanks to Nick. | Georg Brandl | 2007-11-22 | 1 | -1/+1 |
|
|
* | Update docs for buffer -> bytearray rename. | Georg Brandl | 2007-11-22 | 2 | -35/+34 |
|
|
* | Revert change of bz2.vcproj | Christian Heimes | 2007-11-22 | 1 | -4/+0 |
|
|
* | Fixed PGO builds | Christian Heimes | 2007-11-22 | 9 | -15/+38 |
|
|
* | Use PyString instead of PyBytes in wrap_strftime(). | Walter Dörwald | 2007-11-22 | 1 | -10/+10 |
|
|
* | Removed blocks from several functions in unicodeobject and stringobject where... | Christian Heimes | 2007-11-22 | 2 | -93/+12 |
|
|
* | os.environ contains PyUnicode instances and not PyString instances | Christian Heimes | 2007-11-22 | 1 | -3/+3 |
|
|
* | Removed some leftovers from the str8 days | Christian Heimes | 2007-11-22 | 3 | -8/+1 |
|
|
* | Typo in bytes.replace(): the buffer interface was always used. | Amaury Forgeot d'Arc | 2007-11-22 | 1 | -1/+1 |
|
|
* | PyString_AsString is permissive and accepts unicode strings. | Amaury Forgeot d'Arc | 2007-11-22 | 5 | -9/+9 |
|
|
* | In audioop, return PyString instead of PyBytes. | Amaury Forgeot d'Arc | 2007-11-22 | 1 | -31/+31 |
|
|
* | Merged revisions 59105-59106 via svnmerge from | Guido van Rossum | 2007-11-22 | 0 | -0/+0 |
|
|
* | Merged revisions 59077-59104 via svnmerge from | Guido van Rossum | 2007-11-22 | 3 | -6/+26 |
|
|
* | Add ABC ByteString which unifies bytes and bytearray (but not memoryview). | Guido van Rossum | 2007-11-21 | 2 | -5/+26 |
|
|
* | when building with VC 2008, turn off unicode as default mode for the win32 API. | Amaury Forgeot d'Arc | 2007-11-21 | 15 | -105/+105 |
|
|
* | Convert the socket module to insist on bytes for input, and to return bytes | Guido van Rossum | 2007-11-21 | 8 | -43/+42 |
|
|
* | Fix error messages for buffer objects to say "bytes" instead of "string". | Guido van Rossum | 2007-11-21 | 1 | -2/+2 |
|
|
* | More PyBytes -> PyString. | Guido van Rossum | 2007-11-21 | 1 | -4/+4 |
|
|
* | Make os.read() return bytes, not bytearray. | Guido van Rossum | 2007-11-21 | 1 | -3/+3 |
|
|
* | Return PyString, not PyBytes, for a bytes array. | Guido van Rossum | 2007-11-21 | 1 | -25/+25 |
|
|
* | Fix an issue with str.translate() in IDLE -- str.translate() only accepts | Guido van Rossum | 2007-11-21 | 1 | -3/+4 |
|
|
* | Make read() and certificate() return bytes instead of bytearray instances. | Guido van Rossum | 2007-11-21 | 1 | -31/+23 |
|
|
* | Rename buffer -> bytearray. | Guido van Rossum | 2007-11-21 | 31 | -290/+290 |
|
|
* | Final fix for #1403 | Christian Heimes | 2007-11-21 | 1 | -1/+3 |
|
|
* | Removed character set = unicode as requested by Amaury | Christian Heimes | 2007-11-21 | 23 | -1084/+56 |
|
|
* | Fixed bug #1020 pyexpat.XMParserType broken (was: pydoc doesn't work on pyexpat) | Christian Heimes | 2007-11-21 | 1 | -1/+2 |
|
|
* | Patch +1478 from Joseph Armbruster | Christian Heimes | 2007-11-21 | 1 | -3/+3 |
|
|
* | Merged revisions 59056-59076 via svnmerge from | Christian Heimes | 2007-11-20 | 6 | -22/+61 |
|
|
* | For unknown reasons "Save All" doesn't save the vsprops files. | Christian Heimes | 2007-11-20 | 3 | -3/+3 |
|
|
* | Fixes for #1473 and #1476 | Christian Heimes | 2007-11-20 | 5 | -17/+176 |
|
|