| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | 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 |
|
|
* | The Identifiers and keywords syntax diagram did not appear correctly in the | Mark Summerfield | 2007-11-20 | 1 | -4/+4 |
|
|
* | Added configurations and files for profile guided optimization (PGO). | Christian Heimes | 2007-11-20 | 26 | -18/+5900 |
|
|
* | The patch from weck does a better job than my original idea. Thanks! | Christian Heimes | 2007-11-20 | 1 | -4/+2 |
|
|
* | Report #1473 Drop _EXPORTS macros in PCbuild9 | Christian Heimes | 2007-11-20 | 22 | -310/+91 |
|
|
* | Another fix for test_shutil. Martin pointed out that it breaks some build bots | Christian Heimes | 2007-11-20 | 1 | -1/+3 |
|
|
* | os.system: on Windows, avoid encoding the command and use the "wide" function... | Amaury Forgeot d'Arc | 2007-11-20 | 1 | -1/+11 |
|
|
* | Fixed bug #1470 | Christian Heimes | 2007-11-20 | 1 | -5/+2 |
|
|
* | Correct test_cvs on Windows, as suggested by Raghuram Devarakonda | Amaury Forgeot d'Arc | 2007-11-19 | 2 | -3/+17 |
|
|
* | Oops, I missed this one again (test_univnewlines fails): | Amaury Forgeot d'Arc | 2007-11-19 | 1 | -1/+1 |
|
|
* | Issue1395: Universal mode used to duplicate newlines when using read(1). | Amaury Forgeot d'Arc | 2007-11-19 | 3 | -98/+237 |
|
|
* | Make test_cmd_line_scripts pass by using a unicode string instead of | Guido van Rossum | 2007-11-19 | 1 | -14/+16 |
|
|
* | Fixed build order of the _ssl project. The openssl project needs to come firs... | Christian Heimes | 2007-11-19 | 7 | -8/+36 |
|
|
* | Merged revisions 59041-59055 via svnmerge from | Guido van Rossum | 2007-11-19 | 4 | -16/+66 |
|
|
* | Tweak the imports so this script will run stand-alone. | Guido van Rossum | 2007-11-19 | 1 | -2/+2 |
|
|