]> granicus.if.org Git - python/commitdiff
Issue #10762: Guard against invalid/non-supported format string '%f' on Windows....
authorSenthil Kumaran <orsenthil@gmail.com>
Wed, 6 Apr 2011 04:54:06 +0000 (12:54 +0800)
committerSenthil Kumaran <orsenthil@gmail.com>
Wed, 6 Apr 2011 04:54:06 +0000 (12:54 +0800)
Lib/test/test_time.py
Modules/timemodule.c

index b68cd6a7443092e3b3c901c5a04f20c4f1ac837e..65b273557f3995f0fdf40c23b9f1584eb25a0313 100644 (file)
@@ -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).
index a24728aeea0a98b29e9e5c32f87305c62c2d74b4..faed0e18f2f5b9f0aecacf1473613f9163ec066b 100644 (file)
@@ -549,7 +549,7 @@ time_strftime(PyObject *self, PyObject *args)
         if (outbuf[1]=='#')
             ++outbuf; /* not documented by python, */
         if (outbuf[1]=='\0' ||
-            !wcschr(L"aAbBcdfHIjmMpSUwWxXyYzZ%", outbuf[1]))
+            !wcschr(L"aAbBcdHIjmMpSUwWxXyYzZ%", outbuf[1]))
         {
             PyErr_SetString(PyExc_ValueError, "Invalid format string");
             return 0;