From: Barry Warsaw Date: Thu, 24 Apr 2003 18:08:13 +0000 (+0000) Subject: UnicodeTranslationsTest.setUp(): Removed the coerce flag to the X-Git-Tag: v2.3c1~1018 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=edb155fda199f7fa481d0020e911a6eec0705dfa;p=python UnicodeTranslationsTest.setUp(): Removed the coerce flag to the GNUTranslations constructor. --- diff --git a/Lib/test/test_gettext.py b/Lib/test/test_gettext.py index fc3b94167c..81a2081161 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