diff options
author | Barry Warsaw <barry@python.org> | 2003-04-24 18:08:13 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2003-04-24 18:08:13 (GMT) |
commit | edb155fda199f7fa481d0020e911a6eec0705dfa (patch) | |
tree | f61ccb2611098e96476e24bf5880f497db9c843f /Lib/test/test_gettext.py | |
parent | e81866e7c688871543c3127d3999c695abae3d11 (diff) | |
download | cpython-edb155fda199f7fa481d0020e911a6eec0705dfa.zip cpython-edb155fda199f7fa481d0020e911a6eec0705dfa.tar.gz cpython-edb155fda199f7fa481d0020e911a6eec0705dfa.tar.bz2 |
UnicodeTranslationsTest.setUp(): Removed the coerce flag to the
GNUTranslations constructor.
Diffstat (limited to 'Lib/test/test_gettext.py')
-rw-r--r-- | Lib/test/test_gettext.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_gettext.py b/Lib/test/test_gettext.py index fc3b941..81a2081 100644 --- a/Lib/test/test_gettext.py +++ b/Lib/test/test_gettext.py @@ -274,7 +274,7 @@ class UnicodeTranslationsTest(GettextBaseTest): GettextBaseTest.setUp(self) fp = open(UMOFILE, 'rb') try: - self.t = gettext.GNUTranslations(fp, coerce=True) + self.t = gettext.GNUTranslations(fp) finally: fp.close() self._ = self.t.ugettext |