mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
Issue #10762: Guard against invalid/non-supported format string '%f' on Windows. Patch Santoso Wijaya.
This commit is contained in:
parent
c824e9a713
commit
8f377a3bbe
2 changed files with 9 additions and 1 deletions
|
|
@ -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).
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue