summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_calendar.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-10-19 18:54:25 (GMT)
committerGeorg Brandl <georg@python.org>2010-10-19 18:54:25 (GMT)
commit7004bd1a3de06330761d164bae0d82c597bf39cf (patch)
tree4c27a09a59a559026e5f1cf157df2573fbdb9304 /Lib/test/test_calendar.py
parentf87cc0448158fedad9ba0a1edcec3664d9f90eb4 (diff)
downloadcpython-7004bd1a3de06330761d164bae0d82c597bf39cf.zip
cpython-7004bd1a3de06330761d164bae0d82c597bf39cf.tar.gz
cpython-7004bd1a3de06330761d164bae0d82c597bf39cf.tar.bz2
#10092: Properly reset locale in Locale*Calendar classes. The context manager was buggy because setlocale() returns the *new* locale, not the old. Also add a test for this.
Diffstat (limited to 'Lib/test/test_calendar.py')
-rw-r--r--Lib/test/test_calendar.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/Lib/test/test_calendar.py b/Lib/test/test_calendar.py
index b936acb..f906bc3 100644
--- a/Lib/test/test_calendar.py
+++ b/Lib/test/test_calendar.py
@@ -3,6 +3,7 @@ import unittest
from test import support
import time
+import locale
result_2004_text = """
2004
@@ -250,6 +251,22 @@ class CalendarTestCase(unittest.TestCase):
# verify it "acts like a sequence" in two forms of iteration
self.assertEqual(value[::-1], list(reversed(value)))
+ def test_localecalendars(self):
+ # ensure that Locale{Text,HTML}Calendar resets the locale properly
+ # (it is still not thread-safe though)
+ try:
+ def_locale = locale.getdefaultlocale()
+ except locale.Error:
+ # cannot determine a default locale -- skip test
+ return
+ old_october = calendar.TextCalendar().formatmonthname(2010, 10, 10)
+ calendar.LocaleTextCalendar(
+ locale=def_locale).formatmonthname(2010, 10, 10)
+ calendar.LocaleHTMLCalendar(
+ locale=def_locale).formatmonthname(2010, 10)
+ new_october = calendar.TextCalendar().formatmonthname(2010, 10, 10)
+ self.assertEquals(old_october, new_october)
+
class MonthCalendarTestCase(unittest.TestCase):
def setUp(self):