diff options
author | Tim Peters <tim.peters@gmail.com> | 2000-09-01 02:20:20 +0000 |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2000-09-01 02:20:20 +0000 |
commit | 79b6a6290bb12f13f7714fd6eb3f6b961e555996 (patch) | |
tree | 693ff4c2e9ee42286272c42e4cb627fa1da2aa43 /Lib/gettext.py | |
parent | 822cbc7bffc6caf09cea6732145d51a5ef7716a7 (diff) | |
download | cpython-79b6a6290bb12f13f7714fd6eb3f6b961e555996.tar.gz |
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 f5190a3ba6..724cecb4c0 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 |