diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2007-08-21 04:55:11 +0000 |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2007-08-21 04:55:11 +0000 |
commit | b354e3d915ea044e4225ae2609c0ebccaf535ad3 (patch) | |
tree | b9d879891038e65a06815728e413d300d22a8286 | |
parent | 2da880a21cfdbf179edc4fe1cf33b183d0952a0f (diff) | |
download | cpython-git-b354e3d915ea044e4225ae2609c0ebccaf535ad3.tar.gz |
Fix a typo in a comment
-rw-r--r-- | Lib/sre_compile.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/sre_compile.py b/Lib/sre_compile.py index 1d448dae2a..71095991ec 100644 --- a/Lib/sre_compile.py +++ b/Lib/sre_compile.py @@ -280,7 +280,7 @@ def _mk_bitmap(bits): # To represent a big charset, first a bitmap of all characters in the # set is constructed. Then, this bitmap is sliced into chunks of 256 -# characters, duplicate chunks are eliminitated, and each chunk is +# characters, duplicate chunks are eliminated, and each chunk is # given a number. In the compiled expression, the charset is # represented by a 16-bit word sequence, consisting of one word for # the number of different chunks, a sequence of 256 bytes (128 words) |