mirror of
https://github.com/python/cpython.git
synced 2025-08-02 08:02:56 +00:00
Silence a py3k warning claiming to affect Lib/calendar.py
This commit is contained in:
parent
63b0cb2f39
commit
e22997ec7c
1 changed files with 5 additions and 3 deletions
|
@ -212,9 +212,11 @@ class CalendarTestCase(unittest.TestCase):
|
|||
self.assertEqual(calendar.isleap(2003), 0)
|
||||
|
||||
def test_setfirstweekday(self):
|
||||
self.assertRaises(ValueError, calendar.setfirstweekday, 'flabber')
|
||||
self.assertRaises(ValueError, calendar.setfirstweekday, -1)
|
||||
self.assertRaises(ValueError, calendar.setfirstweekday, 200)
|
||||
# Silence a py3k warning claiming to affect Lib/calendar.py
|
||||
with test_support.check_warnings():
|
||||
self.assertRaises(ValueError, calendar.setfirstweekday, 'flabber')
|
||||
self.assertRaises(ValueError, calendar.setfirstweekday, -1)
|
||||
self.assertRaises(ValueError, calendar.setfirstweekday, 200)
|
||||
orig = calendar.firstweekday()
|
||||
calendar.setfirstweekday(calendar.SUNDAY)
|
||||
self.assertEqual(calendar.firstweekday(), calendar.SUNDAY)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue