merge
This commit is contained in:
commit
ee525de6a9
|
@ -295,12 +295,8 @@ class _TestStrftimeYear:
|
||||||
except ValueError:
|
except ValueError:
|
||||||
# strftime() is limited to [1; 9999] with Visual Studio
|
# strftime() is limited to [1; 9999] with Visual Studio
|
||||||
return
|
return
|
||||||
# Issue #10864: OpenIndiana is limited to 4 digits,
|
self.assertEqual(text, '12345')
|
||||||
# but Python doesn't raise a ValueError
|
self.assertEqual(self.yearstr(123456789), '123456789')
|
||||||
#self.assertEqual(text, '12345')
|
|
||||||
#self.assertEqual(self.yearstr(123456789), '123456789')
|
|
||||||
self.assertIn(text, ('2345', '12345'))
|
|
||||||
self.assertIn(self.yearstr(123456789), ('123456789', '6789'))
|
|
||||||
|
|
||||||
class _Test2dYear(_BaseYearTest):
|
class _Test2dYear(_BaseYearTest):
|
||||||
accept2dyear = 1
|
accept2dyear = 1
|
||||||
|
|
Loading…
Reference in New Issue