summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Make test_fileio.py work.Guido van Rossum2007-05-151-1/+1
* Make test_str.py pass.Guido van Rossum2007-05-153-17/+15
* Make tset_float pass. float(<unicode>) was never very good -- it usedGuido van Rossum2007-05-152-22/+30
* Add what looks like a necessary call to PyErr_NoMemory() when PyMem_MALLOC()Guido van Rossum2007-05-151-1/+1
* Kill two innocuous compiler warnings.Guido van Rossum2007-05-152-2/+2
* Obsubmit.Guido van Rossum2007-05-151-2/+2
* Fix the picklevalue test; it broke due to the change in default protocol.Guido van Rossum2007-05-151-9/+15
* Merged revisions 55328-55341 via svnmerge fromGuido van Rossum2007-05-1564-2687/+1459
* Merged revisions 55325-55327 via svnmerge fromGuido van Rossum2007-05-14137-15365/+14480
* Merged revisions 55270-55324 via svnmerge fromGuido van Rossum2007-05-1468-9866/+52
* Change PyUnicode_EncodeCharmap() to return bytes objectsWalter Dörwald2007-05-121-20/+21
* Fix string test (was testing str twice).Walter Dörwald2007-05-121-1/+1
* Change PyUnicode_EncodeRawUnicodeEscape() to return bytesWalter Dörwald2007-05-121-8/+19
* Reuse static global hexdigits array.Walter Dörwald2007-05-121-14/+12
* Change PyUnicode_EncodeUnicodeEscape() to return a bytes object.Walter Dörwald2007-05-121-53/+179
* There's no longer a u prefix for unicode objectsWalter Dörwald2007-05-111-6/+6
* Simplify PyObject_Unicode(NULL) by usingWalter Dörwald2007-05-111-8/+3
* Merged revisions 55225-55227,55229-55269 via svnmerge fromGuido van Rossum2007-05-1157-22482/+805
* Remove support for u"..." literals.Guido van Rossum2007-05-111-10/+1
* Enhance the punycode decoder so that it can decodeWalter Dörwald2007-05-113-130/+136
* Fix the array tests. Only a minor change to the C code was required.Guido van Rossum2007-05-102-17/+15
* Fix some miscellaneous places that incorrectly insisted on str8.Guido van Rossum2007-05-103-27/+34
* Merged revisions 55228 via svnmerge fromGuido van Rossum2007-05-101-3/+3
* Use io.BytesIO instead of StringIO.StringIO in allWalter Dörwald2007-05-101-16/+16
* Merged revisions 55184-55224 via svnmerge fromGuido van Rossum2007-05-102-11/+22
* Fix punycode codec and tests.Walter Dörwald2007-05-102-43/+43
* Don't insist on cStringIO.Guido van Rossum2007-05-091-19/+20
* Don't insist on cStringIO.Guido van Rossum2007-05-091-2/+2
* Fix code depending on exception unpacking.Guido van Rossum2007-05-091-1/+1
* Don't insist on cStringIO.Guido van Rossum2007-05-091-1/+1
* Add to an XXX comment.Guido van Rossum2007-05-091-1/+2
* Random modifications that slightly improve the chances of this not blowing up.Guido van Rossum2007-05-091-11/+10
* Use AsCharBuffer to get a C string out of a Python string.Guido van Rossum2007-05-091-29/+16
* Use AsCharBuffer to get C strings out of Python strings.Guido van Rossum2007-05-092-30/+15
* The NULL pointer for empty strings turns out to be a pain.Guido van Rossum2007-05-091-1/+4
* Be more robust around bytes for e[st]#? formats.Guido van Rossum2007-05-091-4/+8
* More uniform approach to getting (UTF8) bytes out of a string.Guido van Rossum2007-05-091-30/+3
* Support PEP-263-style coding declarations.Guido van Rossum2007-05-091-0/+11
* I don't know how come bytes.join() was a class method, but that's clearlyGuido van Rossum2007-05-092-10/+18
* Forwardport checkin:Walter Dörwald2007-05-091-1/+1
* Fix trivial bug in idna encoding.Guido van Rossum2007-05-091-1/+0
* test_codeccallbacks.py passes again.Walter Dörwald2007-05-091-97/+110
* Mention type in the exception message.Walter Dörwald2007-05-091-2/+3
* Make test_marshal pass. Not my best work. :-(Guido van Rossum2007-05-092-10/+43
* Make the StringIO test pass.Guido van Rossum2007-05-082-23/+36
* Got test_pickletools and test_pickle working.Guido van Rossum2007-05-085-145/+172
* Given that ord() of a bytes object of length 1 is defined, it shouldGuido van Rossum2007-05-083-1/+15
* Fix a few places where a str instead of a bytes object was used.Guido van Rossum2007-05-082-5/+5
* repr(b"\0") should return b"\x00", not the (unusual) b"\0".Guido van Rossum2007-05-082-3/+4
* Kill u"..." string quotes. Thought I already did that.Guido van Rossum2007-05-082-10/+2