Marc-Andre Lemburg:

Attached you find the latest update of the Unicode implementation.
The patch is against the current CVS version.

It includes the fix I posted yesterday for the core dump problem
in codecs.c (was introduced by my previous patch set -- sorry),
adds more tests for the codecs and two new parser markers
"es" and "es#".
This commit is contained in:
Guido van Rossum 2000-03-24 22:14:19 +00:00
parent 27fc3c05e1
commit d8855fde88
5 changed files with 259 additions and 6 deletions

View file

@ -46,7 +46,7 @@ class Codec:
handling schemes by providing the errors argument. These
string values are defined:
'strict' - raise an error (or a subclass)
'strict' - raise a ValueError error (or a subclass)
'ignore' - ignore the character and continue with the next
'replace' - replace with a suitable replacement character;
Python will use the official U+FFFD REPLACEMENT