From 716cf918390f86c69fb1525e13273570521da759 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Lemburg?= Date: Wed, 16 May 2001 09:41:45 +0000 Subject: Moved the encoding map building logic from the individual mapping codec files to codecs.py and added logic so that multi mappings in the decoding maps now result in mappings to None (undefined mapping) in the encoding maps. --- Tools/scripts/gencodec.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'Tools/scripts/gencodec.py') diff --git a/Tools/scripts/gencodec.py b/Tools/scripts/gencodec.py index bc70a32309..69b6ede6c2 100644 --- a/Tools/scripts/gencodec.py +++ b/Tools/scripts/gencodec.py @@ -244,9 +244,7 @@ def getregentry(): append(''' ### Encoding Map -encoding_map = {} -for k,v in decoding_map.items(): - encoding_map[v] = k +encoding_map = codecs.make_encoding_map(decoding_map) ''') return string.join(l,'\n') -- cgit v1.2.1