diff options
author | Tim Peters <tim.peters@gmail.com> | 2000-09-01 02:20:20 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2000-09-01 02:20:20 (GMT) |
commit | c638791d53c7a2f72f8b934a7e7b1513f12aaa4e (patch) | |
tree | e40540d5f638d4be154fb025fdae5cd49cd363f0 /Lib/gettext.py | |
parent | 349ff6f7e205646be5749dbcb5d8bb1ba4fa022b (diff) | |
download | cpython-c638791d53c7a2f72f8b934a7e7b1513f12aaa4e.zip cpython-c638791d53c7a2f72f8b934a7e7b1513f12aaa4e.tar.gz cpython-c638791d53c7a2f72f8b934a7e7b1513f12aaa4e.tar.bz2 |
Repaired comment.
Diffstat (limited to 'Lib/gettext.py')
-rw-r--r-- | Lib/gettext.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/gettext.py b/Lib/gettext.py index f5190a3..724cecb 100644 --- a/Lib/gettext.py +++ b/Lib/gettext.py @@ -129,7 +129,7 @@ class GNUTranslations(NullTranslations): def _parse(self, fp): """Override this method to support alternative .mo formats.""" - # We need to & all 32 bit unsigned integers with 0xffffff for + # We need to & all 32 bit unsigned integers with 0xffffffff for # portability to 64 bit machines. MASK = 0xffffffff unpack = struct.unpack |