summaryrefslogtreecommitdiffstats
path: root/Lib/test/testcodec.py
Commit message (Collapse)AuthorAgeFilesLines
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-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 Brandl2007-10-241-1/+1
|
* Fix testcodec.py and test_charmapcodec.pyWalter Dörwald2007-05-231-1/+1
|
* Rip out all the u"..." literals and calls to unicode().Guido van Rossum2007-05-021-2/+2
|
* Whitespace normalization. Leaving tokenize_tests.py alone for now.Tim Peters2001-01-181-3/+2
|
* Moved the test codec definition to a new module and updated the test andMarc-André Lemburg2001-01-101-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.