summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_codeccallbacks.py
Commit message (Collapse)AuthorAgeFilesLines
* Add comments and remove duplicate tests.Walter Dörwald2003-01-201-26/+34
|
* Make the test scripts work again with narrow Python builds.Walter Dörwald2003-01-091-1/+1
|
* Add a few test cases to increase code coverage:Walter Dörwald2003-01-081-0/+115
| | | | | | | | | | | | | | | From: 69.73% of 294 source lines executed in file ./Modules/_codecsmodule.c 79.47% of 487 source lines executed in file Python/codecs.c 78.45% of 3643 source lines executed in file Objects/unicodeobject.c To: 70.41% of 294 source lines executed in file ./Modules/_codecsmodule.c 82.75% of 487 source lines executed in file Python/codecs.c 80.76% of 3638 source lines executed in file Objects/unicodeobject.c This actually unearthed a bug in the handling of None values in PyUnicode_EncodeCharmap.
* Fix typo in comment.Walter Dörwald2002-11-251-1/+1
|
* Update character names.Martin v. Löwis2002-11-231-3/+3
|
* Whitespace normalization.Tim Peters2002-11-091-5/+5
|
* Add a test case that checks that the proper exception is raisesWalter Dörwald2002-09-061-0/+15
| | | | | when the replacement from an encoding error callback is itself unencodable.
* PEP 293 implemention (from SF patch http://www.python.org/sf/432401)Walter Dörwald2002-09-021-0/+483