diff options
author | Steve Dower <steve.dower@microsoft.com> | 2015-06-24 03:48:32 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2015-06-24 03:48:32 (GMT) |
commit | 7aec764d7391a077c2d8cc9610d506fc9970f0d8 (patch) | |
tree | f13939827ad7825123023c136b09088c1b897297 /Lib/test/test_time.py | |
parent | 27947d5d5c1d2df6ce87321abb777aacacb7f03a (diff) | |
download | cpython-7aec764d7391a077c2d8cc9610d506fc9970f0d8.zip cpython-7aec764d7391a077c2d8cc9610d506fc9970f0d8.tar.gz cpython-7aec764d7391a077c2d8cc9610d506fc9970f0d8.tar.bz2 |
Closes #24244: Removes invalid test from test_time
Diffstat (limited to 'Lib/test/test_time.py')
-rw-r--r-- | Lib/test/test_time.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Lib/test/test_time.py b/Lib/test/test_time.py index 0891834..6334e02 100644 --- a/Lib/test/test_time.py +++ b/Lib/test/test_time.py @@ -114,13 +114,6 @@ class TimeTestCase(unittest.TestCase): except ValueError: self.fail('conversion specifier: %r failed.' % format) - # Issue #10762: Guard against invalid/non-supported format string - # so that Python don't crash (Windows crashes when the format string - # input to [w]strftime is not kosher. - if sys.platform.startswith('win'): - with self.assertRaises(ValueError): - time.strftime('%f') - def _bounds_checking(self, func): # Make sure that strftime() checks the bounds of the various parts # of the time tuple (0 is valid for *all* values). |