[Python-checkins] r56177 - python/trunk/Lib/sre_compile.py

neal.norwitz python-checkins at python.org
Fri Jul 6 06:13:39 CEST 2007


Author: neal.norwitz
Date: Fri Jul  6 06:13:39 2007
New Revision: 56177

Modified:
   python/trunk/Lib/sre_compile.py
Log:
Fix typo in comment

Modified: python/trunk/Lib/sre_compile.py
==============================================================================
--- python/trunk/Lib/sre_compile.py	(original)
+++ python/trunk/Lib/sre_compile.py	Fri Jul  6 06:13:39 2007
@@ -280,7 +280,7 @@
 
 # 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)


More information about the Python-checkins mailing list