This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author neologix
Recipients antlong, belopolsky, ned.deily, neologix
Date 2011-02-26.12:24:53
SpamBayes Score 3.53069e-05
Marked as misclassified No
Message-id <1298723094.38.0.279066758343.issue11327@psf.upfronthosting.co.za>
In-reply-to
Content
I updated my local svn checkout, and the code has been fixed recently:


  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


    p = asctime(&buf);
    if (p == NULL) {
        PyErr_SetString(PyExc_ValueError, "invalid time");
        return NULL;
    }
    if (p[24] == '\n')
        p[24] = '\0';


So I'd suggest to close this issue.
History
Date User Action Args
2011-02-26 12:24:54neologixsetrecipients: + neologix, belopolsky, ned.deily, antlong
2011-02-26 12:24:54neologixsetmessageid: <1298723094.38.0.279066758343.issue11327@psf.upfronthosting.co.za>
2011-02-26 12:24:53neologixlinkissue11327 messages
2011-02-26 12:24:53neologixcreate