cpython: e73683514b4d (original) (raw)
Mercurial > cpython
changeset 87429:e73683514b4d
Isue #19634: test_y_before_1900() is expected to fail on Solaris [#19634]
Victor Stinner victor.stinner@gmail.com | |
---|---|
date | Sat, 23 Nov 2013 17:58:26 +0100 |
parents | dc3c30dac5e3 |
children | 8344e273c862 |
files | Lib/test/test_strftime.py |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-)[+] [-] Lib/test/test_strftime.py 4 |
line wrap: on
line diff
--- a/Lib/test/test_strftime.py +++ b/Lib/test/test_strftime.py @@ -183,8 +183,10 @@ class Y1900Tests(unittest.TestCase): """ def test_y_before_1900(self):
# Issue #13674, #19634[](#l1.7) t = (1899, 1, 1, 0, 0, 0, 0, 0, 0)[](#l1.8)
if sys.platform == "win32" or sys.platform.startswith("aix"):[](#l1.9)
if (sys.platform == "win32"[](#l1.10)
or sys.platform.startswith(("aix", "sunos", "solaris"))):[](#l1.11) with self.assertRaises(ValueError):[](#l1.12) time.strftime("%y", t)[](#l1.13) else:[](#l1.14)