Merged revisions 86239,86241 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r86239 | eric.araujo | 2010-11-06 05:09:29 +0100 (sam., 06 nov. 2010) | 2 lines

  Fix caching error found by regrtest -R (#10229)
........
  r86241 | eric.araujo | 2010-11-06 05:24:00 +0100 (sam., 06 nov. 2010) | 2 lines

  Add missing NEWS entry for r86239.
........
This commit is contained in:
Éric Araujo 2010-11-06 04:36:28 +00:00
parent d1feff70a3
commit e28665aa8e
2 changed files with 3 additions and 0 deletions

View File

@ -75,6 +75,7 @@ class GettextBaseTest(unittest.TestCase):
fp.close() fp.close()
self.env = test_support.EnvironmentVarGuard() self.env = test_support.EnvironmentVarGuard()
self.env['LANGUAGE'] = 'xx' self.env['LANGUAGE'] = 'xx'
gettext._translations.clear()
def tearDown(self): def tearDown(self):
self.env.__exit__() self.env.__exit__()

View File

@ -69,6 +69,8 @@ Core and Builtins
Library Library
------- -------
- Issue #10229: Fix caching error in gettext.
- Issue #10252: Close file objects in a timely manner in distutils code and - Issue #10252: Close file objects in a timely manner in distutils code and
tests. Patch by Brian Brazil, completed by Éric Araujo. tests. Patch by Brian Brazil, completed by Éric Araujo.