[Python-checkins] cpython (merge 3.5 -> default): Closes #24244: Removes invalid test from test_time

steve.dower python-checkins at python.org
Wed Jun 24 05:49:09 CEST 2015


https://hg.python.org/cpython/rev/f0ca1fabb41f
changeset:   96650:f0ca1fabb41f
parent:      96648:8dde150437cc
parent:      96649:2c10e9f62613
user:        Steve Dower <steve.dower at microsoft.com>
date:        Tue Jun 23 20:48:52 2015 -0700
summary:
  Closes #24244: Removes invalid test from test_time

files:
  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
--- a/Lib/test/test_time.py
+++ b/Lib/test/test_time.py
@@ -114,13 +114,6 @@
             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).

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list