diff options
author | Senthil Kumaran <orsenthil@gmail.com> | 2011-04-06 04:54:06 (GMT) |
---|---|---|
committer | Senthil Kumaran <orsenthil@gmail.com> | 2011-04-06 04:54:06 (GMT) |
commit | 8f377a3bbe5588da3328ab816ce5f707aa3c97ac (patch) | |
tree | 62c817e6719637d8086ab7c34554bb2895f06303 /Lib/test/test_time.py | |
parent | c824e9a713efac8d14e4d697f8c01a52c8f0d42c (diff) | |
download | cpython-8f377a3bbe5588da3328ab816ce5f707aa3c97ac.zip cpython-8f377a3bbe5588da3328ab816ce5f707aa3c97ac.tar.gz cpython-8f377a3bbe5588da3328ab816ce5f707aa3c97ac.tar.bz2 |
Issue #10762: Guard against invalid/non-supported format string '%f' on Windows. Patch Santoso Wijaya.
Diffstat (limited to 'Lib/test/test_time.py')
-rw-r--r-- | Lib/test/test_time.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Lib/test/test_time.py b/Lib/test/test_time.py index b68cd6a..65b2735 100644 --- a/Lib/test/test_time.py +++ b/Lib/test/test_time.py @@ -2,6 +2,7 @@ from test import support import time import unittest import locale +import sys class TimeTestCase(unittest.TestCase): @@ -37,6 +38,13 @@ 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 test_strftime_bounds_checking(self): # Make sure that strftime() checks the bounds of the various parts #of the time tuple (0 is valid for *all* values). |