diff options
author | Walter Dörwald <walter@livinglogic.de> | 2003-02-02 23:39:45 (GMT) |
---|---|---|
committer | Walter Dörwald <walter@livinglogic.de> | 2003-02-02 23:39:45 (GMT) |
commit | 771bc377f81f877d9840402aab765c7bd957c79d (patch) | |
tree | e2f5deee782c0692eec11915d11c38061532911b /Tools | |
parent | 7dc65d64034d2121e4545713f911f95237756007 (diff) | |
download | cpython-771bc377f81f877d9840402aab765c7bd957c79d.zip cpython-771bc377f81f877d9840402aab765c7bd957c79d.tar.gz cpython-771bc377f81f877d9840402aab765c7bd957c79d.tar.bz2 |
Fix comment typo.
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/scripts/gencodec.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/scripts/gencodec.py b/Tools/scripts/gencodec.py index 46563df..fdaa8fe 100644 --- a/Tools/scripts/gencodec.py +++ b/Tools/scripts/gencodec.py @@ -95,7 +95,7 @@ def readmap(filename): else: enc2uni[enc] = (uni,comment) # If there are more identity-mapped entries than unmapped entries, - # it pays to generate an identity dictionary first, add add explicit + # it pays to generate an identity dictionary first, and add explicit # mappings to None for the rest if len(identity)>=len(unmapped): for enc in unmapped: |