(original) (raw)

changeset: 73282:2771f7e96a52 user: Florent Xicluna florent.xicluna@gmail.com date: Tue Nov 01 15:12:34 2011 +0100 files: Lib/test/test_time.py description: Add temporary tests to troubleshoot issue #13309 on Gentoo buildbot. diff -r 55a3b563f0db -r 2771f7e96a52 Lib/test/test_time.py --- a/Lib/test/test_time.py Tue Nov 01 14:11:34 2011 +0100 +++ b/Lib/test/test_time.py Tue Nov 01 15:12:34 2011 +0100 @@ -161,6 +161,10 @@ self.fail("conversion specifier %r failed with '%s' input." % (format, strf_output)) + # XXX Temporary tests to troubleshoot issue #13309 on buildbots + test_aaa_strptime = test_strptime + test_bbb_strptime = test_strptime + def test_strptime_bytes(self): # Make sure only strings are accepted as arguments to strptime. self.assertRaises(TypeError, time.strptime, b'2009', "%Y") /florent.xicluna@gmail.com