]> granicus.if.org Git - python/commitdiff
Merged revisions 85223 via svnmerge from
authorÉric Araujo <merwok@netwok.org>
Mon, 4 Oct 2010 23:57:46 +0000 (23:57 +0000)
committerÉric Araujo <merwok@netwok.org>
Mon, 4 Oct 2010 23:57:46 +0000 (23:57 +0000)
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r85223 | eric.araujo | 2010-10-05 01:52:37 +0200 (mar., 05 oct. 2010) | 3 lines

  Fix interaction of custom translation classes and caching (#9042)
........

Lib/gettext.py
Lib/test/test_gettext.py
Misc/NEWS

index 4c957c0c6ad199a84e9ce46f39ea22643d7a2477..f9392d80d500a0304b875bc6fd22ae7fb1dd2ba6 100644 (file)
@@ -419,7 +419,7 @@ def translation(domain, localedir=None, languages=None,
     # once.
     result = None
     for mofile in mofiles:
-        key = os.path.abspath(mofile)
+        key = (class_, os.path.abspath(mofile))
         t = _translations.get(key)
         if t is None:
             with open(mofile, 'rb') as fp:
index d667819ec2a079594be177ceaabf1c31fa8b8524..69ffcb7d296fbe3372dc0d2cd219c4a4f224f714 100644 (file)
@@ -335,6 +335,37 @@ class WeirdMetadataTest(GettextBaseTest):
            'John Doe <jdoe@example.com>\nJane Foobar <jfoobar@example.com>')
 
 
+class DummyGNUTranslations(gettext.GNUTranslations):
+    def foo(self):
+        return 'foo'
+
+
+class GettextCacheTestCase(GettextBaseTest):
+    def test_cache(self):
+        self.localedir = os.curdir
+        self.mofile = MOFILE
+
+        self.assertEqual(len(gettext._translations), 0)
+
+        t = gettext.translation('gettext', self.localedir)
+
+        self.assertEqual(len(gettext._translations), 1)
+
+        t = gettext.translation('gettext', self.localedir,
+                                class_=DummyGNUTranslations)
+
+        self.assertEqual(len(gettext._translations), 2)
+        self.assertEqual(t.__class__, DummyGNUTranslations)
+
+        # Calling it again doesn't add to the cache
+
+        t = gettext.translation('gettext', self.localedir,
+                                class_=DummyGNUTranslations)
+
+        self.assertEqual(len(gettext._translations), 2)
+        self.assertEqual(t.__class__, DummyGNUTranslations)
+
+
 def test_main():
     support.run_unittest(__name__)
 
index bbba9433bbff566ee0bf6871daa83ce5bfcb67a1..6fbd04ce25e57d6e17b898c5a32cccbbc5afd893 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -124,6 +124,9 @@ C-API
 Library
 -------
 
+- Issue #9042: Fix interaction of custom translation classes and caching in
+  gettext.
+
 - Issue #9065: tarfile no longer uses "root" as the default for the uname and
   gname field.