diff options
author | Barry Warsaw <barry@python.org> | 2000-08-25 19:53:51 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2000-08-25 19:53:51 (GMT) |
commit | 1dce09da610941d56b9392cb77a87fccfd58083c (patch) | |
tree | 4037a72b79da6455462af5cd51cdf0956a82a62e | |
parent | 84314b72d65471b0ae68432aefe36a4691e3b04e (diff) | |
download | cpython-1dce09da610941d56b9392cb77a87fccfd58083c.zip cpython-1dce09da610941d56b9392cb77a87fccfd58083c.tar.gz cpython-1dce09da610941d56b9392cb77a87fccfd58083c.tar.bz2 |
Group consensus is that supporting alternative locale categories is
useless. So the test of the dcgettext() function is removed.
-rw-r--r-- | Lib/test/test_gettext.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Lib/test/test_gettext.py b/Lib/test/test_gettext.py index 465030b..5006fff 100644 --- a/Lib/test/test_gettext.py +++ b/Lib/test/test_gettext.py @@ -43,12 +43,6 @@ gettext message catalog library.''') print gettext.dgettext('gettext', 'nudge nudge') - # dcgettext - ##import locale - ##if gettext.dcgettext('gettext', 'nudge nudge', - ## locale.LC_MESSAGES) <> 'wink wink': - ## print _('dcgettext failed') - # test the alternative interface fp = open(os.path.join(mofile), 'rb') t = gettext.GNUTranslations(fp) |