Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merging the py3k-pep3137 branch back into the py3k branch. | Guido van Rossum | 2007-11-06 | 1 | -1/+1 |
| | | | | | | | | | | | | | | No detailed change log; just check out the change log for the py3k-pep3137 branch. The most obvious changes: - str8 renamed to bytes (PyString at the C level); - bytes renamed to buffer (PyBytes at the C level); - PyString and PyUnicode are no longer compatible. I.e. we now have an immutable bytes type and a mutable bytes type. The behavior of PyString was modified quite a bit, to make it more bytes-like. Some changes are still on the to-do list. | ||||
* | Patch #1303: Adapt str8 constructor to bytes (now buffer) one. | Georg Brandl | 2007-10-24 | 1 | -1/+1 |
| | |||||
* | Fix testcodec.py and test_charmapcodec.py | Walter Dörwald | 2007-05-23 | 1 | -1/+1 |
| | |||||
* | Rip out all the u"..." literals and calls to unicode(). | Guido van Rossum | 2007-05-02 | 1 | -2/+2 |
| | |||||
* | Whitespace normalization. Leaving tokenize_tests.py alone for now. | Tim Peters | 2001-01-18 | 1 | -3/+2 |
| | |||||
* | Moved the test codec definition to a new module and updated the test and | Marc-André Lemburg | 2001-01-10 | 1 | -0/+49 |
codec to test all charmap codec features. As side-effect of moving the test codec into a new module, the encodings package codec import mechanism is checked as well. |