5562 -> 3061.

This commit is contained in:
Martin v. Löwis 2009-05-30 06:15:30 +00:00
parent 1b01ccd76a
commit a6a9c4d2ac
2 changed files with 2 additions and 2 deletions

View file

@ -230,7 +230,7 @@ class TestLocale(unittest.TestCase):
def tearDown(self): def tearDown(self):
locale.setlocale(locale.LC_ALL, self.oldloc) locale.setlocale(locale.LC_ALL, self.oldloc)
def test_bug_5562(self): def test_bug_3061(self):
try: try:
tmp = locale.setlocale(locale.LC_ALL, "fr_FR") tmp = locale.setlocale(locale.LC_ALL, "fr_FR")
except locale.Error: except locale.Error:

View file

@ -111,7 +111,7 @@ Installation
Extension Modules Extension Modules
----------------- -----------------
- Issue #5562: Use wcsftime for time.strftime where available. - Issue #3061: Use wcsftime for time.strftime where available.
- Issue #4873: Fix resource leaks in error cases of pwd and grp. - Issue #4873: Fix resource leaks in error cases of pwd and grp.