summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_bytes.py
Commit message (Collapse)AuthorAgeFilesLines
* Comment out debug print.Guido van Rossum2006-05-261-1/+1
|
* Adding bytes.join() -- a class methods that concatenates an iterable of bytes.Guido van Rossum2006-05-051-0/+24
| | | | The name and API are questionable, but the functionality isn't.
* Implement bytes += bytes, bytes *= int, int in bytes, bytes in bytes.Guido van Rossum2006-04-271-2/+49
|
* Added much functionality to the bytes type.Guido van Rossum2006-04-241-32/+232
| | | | Change file.readinto() to require binary mode.
* Fix a leak and a buglet discovered by Thomas.Guido van Rossum2006-04-231-16/+48
| | | | | Get rid of silly lambdas in the unit test suite. Add a TODO list to the unit test suite (TDD style).
* Fix test_main function so test_bytes can be run by regrtest.py.Thomas Wouters2006-04-231-1/+1
|
* Here is a bytes type. It's very minimal but it's a start.Guido van Rossum2006-04-221-0/+109