diff options
author | Guido van Rossum <guido@python.org> | 2000-04-10 19:45:09 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-04-10 19:45:09 (GMT) |
commit | 2581764f21aedb266e6e9c94e3c003cfd37827a9 (patch) | |
tree | 4ac9a00ee561feaad67644aa6470c4d750764da1 /Misc/unicode.txt | |
parent | 8520cc2328afc23e050f19078e6b90490e59872f (diff) | |
download | cpython-2581764f21aedb266e6e9c94e3c003cfd37827a9.zip cpython-2581764f21aedb266e6e9c94e3c003cfd37827a9.tar.gz cpython-2581764f21aedb266e6e9c94e3c003cfd37827a9.tar.bz2 |
Version 1.3 of the Python Unicode Integration proposal.
Diffstat (limited to 'Misc/unicode.txt')
-rw-r--r-- | Misc/unicode.txt | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Misc/unicode.txt b/Misc/unicode.txt index ce74c05..68a4228 100644 --- a/Misc/unicode.txt +++ b/Misc/unicode.txt @@ -1,5 +1,5 @@ ============================================================================= - Python Unicode Integration Proposal Version: 1.2 + Python Unicode Integration Proposal Version: 1.3 ----------------------------------------------------------------------------- @@ -203,8 +203,9 @@ implemented by a module "codecs": codecs.register(search_function) Search functions are expected to take one argument, the encoding name -in all lower case letters, and return a tuple of functions (encoder, -decoder, stream_reader, stream_writer) taking the following arguments: +in all lower case letters and with hyphens and spaces converted to +underscores, and return a tuple of functions (encoder, decoder, +stream_reader, stream_writer) taking the following arguments: encoder and decoder: These must be functions or methods which have the same |