| Commit message (Expand) | Author | Age | Files | Lines |
* | I don't know how come bytes.join() was a class method, but that's clearly | Guido van Rossum | 2007-05-09 | 1 | -5/+12 |
|
|
* | Mention type in the exception message. | Walter Dörwald | 2007-05-09 | 1 | -2/+3 |
|
|
* | Make the StringIO test pass. | Guido van Rossum | 2007-05-08 | 1 | -2/+11 |
|
|
* | repr(b"\0") should return b"\x00", not the (unusual) b"\0". | Guido van Rossum | 2007-05-08 | 1 | -1/+1 |
|
|
* | Merged revisions 55180-55183 via svnmerge from | Guido van Rossum | 2007-05-08 | 1 | -8/+13 |
|
|
* | Merged revisions 55007-55179 via svnmerge from | Guido van Rossum | 2007-05-07 | 1 | -152/+557 |
|
|
* | Check whether the strlen() result overflows Py_ssize_t. | Walter Dörwald | 2007-05-06 | 1 | -1/+5 |
|
|
* | Change PyUnicode_EncodeUTF7() to return a bytes object. | Walter Dörwald | 2007-05-05 | 1 | -4/+7 |
|
|
* | Silence gcc warnings. | Walter Dörwald | 2007-05-05 | 1 | -4/+4 |
|
|
* | When creating a unicode object from a char * characters | Walter Dörwald | 2007-05-05 | 1 | -3/+2 |
|
|
* | Add PyUnicode_FromString(), which create a unicode object from a | Walter Dörwald | 2007-05-05 | 1 | -0/+45 |
|
|
* | Change UnicodeDecodeError objects so that the 'object' attribute | Walter Dörwald | 2007-05-04 | 1 | -8/+24 |
|
|
* | Change PyUnicode_EncodeUTF16() so that it returns | Walter Dörwald | 2007-05-04 | 1 | -2/+2 |
|
|
* | It's ok for __repr__ to return unicode. | Guido van Rossum | 2007-05-04 | 1 | -9/+2 |
|
|
* | Make all of test_bytes pass (except pickling, which is too badly busted). | Guido van Rossum | 2007-05-04 | 2 | -19/+17 |
|
|
* | Add trailing null bytes to a few more places. | Guido van Rossum | 2007-05-04 | 1 | -8/+12 |
|
|
* | Compare and hash unicode objects like their UTF-8 representations. | Guido van Rossum | 2007-05-04 | 1 | -51/+23 |
|
|
* | More coding by random modification. | Guido van Rossum | 2007-05-04 | 5 | -68/+96 |
|
|
* | Fix type name (str has been renamed to str8). | Walter Dörwald | 2007-05-03 | 1 | -1/+1 |
|
|
* | Get rid of all #ifdef Py_USING_UNICODE (it is always present now). | Guido van Rossum | 2007-05-03 | 10 | -138/+5 |
|
|
* | Rename 'unicode' to 'str' in its tp_name field. Rename 'str' to 'str8'. | Guido van Rossum | 2007-05-03 | 2 | -2/+2 |
|
|
* | Checkpoint. Manipulated things so that string literals are always | Guido van Rossum | 2007-04-27 | 2 | -4/+6 |
|
|
* | Merged revisions 53952-54987 via svnmerge from | Guido van Rossum | 2007-04-27 | 10 | -257/+627 |
|
|
* | PEP 3114: rename .next() to .__next__() and add next() builtin. | Georg Brandl | 2007-04-21 | 2 | -4/+4 |
|
|
* | Disallow u"..." + b"..." and b"..." + u"...". | Guido van Rossum | 2007-04-13 | 1 | -0/+3 |
|
|
* | Rough and dirty job -- allow concatenation of bytes and arbitrary | Guido van Rossum | 2007-04-13 | 3 | -61/+168 |
|
|
* | Clean up trailing whitespace. | Guido van Rossum | 2007-04-12 | 1 | -18/+18 |
|
|
* | Real pickling for bytes. | Guido van Rossum | 2007-04-11 | 1 | -1/+14 |
|
|
* | Bytes should never equal unicode. | Guido van Rossum | 2007-04-09 | 1 | -1/+6 |
|
|
* | For Make Benefit Glorious Nation of Backwards Compatibility, | Guido van Rossum | 2007-04-09 | 1 | -10/+33 |
|
|
* | Fix refcounting bug reported by Amaury Forgeot d'Arc. | Guido van Rossum | 2007-03-29 | 1 | -1/+2 |
|
|
* | By default, != returns the opposite of ==, unless the latter returns | Guido van Rossum | 2007-03-27 | 1 | -1/+16 |
|
|
* | Remove the deprecated and useless "pend" argument from | Georg Brandl | 2007-03-18 | 2 | -21/+3 |
|
|
* | Check the keys of the locals dict -- they need not be a list. | Georg Brandl | 2007-03-12 | 1 | -1/+12 |
|
|
* | Patch #1591665: implement the __dir__() special function lookup in PyObject_Dir. | Georg Brandl | 2007-03-10 | 1 | -126/+144 |
|
|
* | Fix off-by-one bug in memmove() call in bytes_insert(). | Guido van Rossum | 2007-02-27 | 1 | -1/+1 |
|
|
* | SF patch #1669633, add methods for bytes from Pete Shinners. | Neal Norwitz | 2007-02-27 | 1 | -1/+1556 |
|
|
* | Remove a few stray tabs from bytesobject.c. | Georg Brandl | 2007-02-27 | 1 | -30/+30 |
|
|
* | Implement bytes.fromhex(), with tests. | Georg Brandl | 2007-02-27 | 1 | -10/+76 |
|
|
* | Fix some silly uses of KEYS, ITEMS, VALUES. | Guido van Rossum | 2007-02-27 | 1 | -8/+6 |
|
|
* | Remove the ability to slice/index on exceptions per PEP 352. | Brett Cannon | 2007-02-27 | 1 | -28/+1 |
|
|
* | Add TODO | Neal Norwitz | 2007-02-26 | 1 | -0/+8 |
|
|
* | Remove the exceptions builtin module, all the exceptions are already builtin. | Neal Norwitz | 2007-02-26 | 1 | -28/+8 |
|
|
* | Another refleak, this time in PyLong_AsLong. Fixes leaks showing in | Georg Brandl | 2007-02-26 | 1 | -33/+43 |
|
|
* | Fix a refleak in PyString_Format. | Georg Brandl | 2007-02-26 | 1 | -1/+5 |
|
|
* | Fix refleaks in function objects caused by kwdefaults not being allocated. | Georg Brandl | 2007-02-26 | 1 | -1/+3 |
|
|
* | Don't confound Neil S on b"a"[0] = b"b". | Guido van Rossum | 2007-02-26 | 1 | -2/+2 |
|
|
* | These comments aren't relevant for 3k. They were to support modules compiled | Neal Norwitz | 2007-02-25 | 1 | -4/+0 |
|
|
* | Change all the function attributes from func_* -> __*__. This gets rid | Neal Norwitz | 2007-02-25 | 1 | -14/+11 |
|
|
* | Merged revisions 53875-53911 via svnmerge from | Thomas Wouters | 2007-02-25 | 9 | -13/+42 |
|
|