]> granicus.if.org Git - python/commitdiff
Merged revisions 87648,87656 via svnmerge from
authorAlexander Belopolsky <alexander.belopolsky@gmail.com>
Sun, 2 Jan 2011 23:23:54 +0000 (23:23 +0000)
committerAlexander Belopolsky <alexander.belopolsky@gmail.com>
Sun, 2 Jan 2011 23:23:54 +0000 (23:23 +0000)
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r87648 | alexander.belopolsky | 2011-01-02 15:48:22 -0500 (Sun, 02 Jan 2011) | 1 line

  Issue #8013: Fixed time.asctime segfault when OS's asctime fails
........
  r87656 | alexander.belopolsky | 2011-01-02 17:16:10 -0500 (Sun, 02 Jan 2011) | 1 line

  Issue #8013: Fixed test
........

Lib/test/test_time.py
Modules/timemodule.c

index c991b505596e2c0b732f5f1feef5d2c69e8b977a..0028f15cb028fde2ef1e43d6418b73782adc57ff 100644 (file)
@@ -114,6 +114,16 @@ class TimeTestCase(unittest.TestCase):
     def test_asctime(self):
         time.asctime(time.gmtime(self.t))
         self.assertRaises(TypeError, time.asctime, 0)
+        self.assertRaises(TypeError, time.asctime, ())
+        # XXX: Posix compiant asctime should refuse to convert
+        # year > 9999, but Linux implementation does not.
+        # self.assertRaises(ValueError, time.asctime,
+        #                  (12345, 1, 0, 0, 0, 0, 0, 0, 0))
+        # XXX: For now, just make sure we don't have a crash:
+        try:
+            time.asctime((12345, 1, 0, 0, 0, 0, 0, 0, 0))
+        except ValueError:
+            pass
 
     @unittest.skipIf(not hasattr(time, "tzset"),
         "time module has no attribute tzset")
index 92f58c23f9efbf2e3647f877fdad6b9f135fceb6..7a51d240fb2d5b5c1d5a052381dff1895ecc9422 100644 (file)
@@ -572,6 +572,10 @@ time_asctime(PyObject *self, PyObject *args)
     } else if (!gettmarg(tup, &buf))
         return NULL;
     p = asctime(&buf);
+    if (p == NULL) {
+        PyErr_SetString(PyExc_ValueError, "invalid time");
+        return NULL;
+    }
     if (p[24] == '\n')
         p[24] = '\0';
     return PyString_FromString(p);