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 polymorphm
Recipients Arfrever, Martin.Morrison, belopolsky, hynek, pconnell, pitrou, polymorphm, python-dev, swalker, vstinner
Date 2016-02-29.10:32:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1456741947.08.0.906973071988.issue14157@psf.upfronthosting.co.za>
In-reply-to
Content
$ python
    Python 3.5.1 (default, Dec  7 2015, 12:58:09) 
    [GCC 5.2.0] on linux
    Type "help", "copyright", "credits" or "license" for more information.
    >>> 
    >>> 
    >>> 
    >>> import time
    >>> 
    >>> time.strptime("Feb 29", "%b %d")
    time.struct_time(tm_year=1900, tm_mon=2, tm_mday=29, tm_hour=0, tm_min=0, tm_sec=0, tm_wday=0, tm_yday=60, tm_isdst=-1)
    >>> 
    >>> 
    >>> import datetime
    >>> 
    >>> datetime.datetime.strptime("Feb 29", "%b %d")
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
      File "/usr/lib/python3.5/_strptime.py", line 511, in _strptime_datetime
        return cls(*args)
    ValueError: day is out of range for month
History
Date User Action Args
2016-02-29 10:32:27polymorphmsetrecipients: + polymorphm, belopolsky, pitrou, vstinner, Arfrever, swalker, python-dev, hynek, Martin.Morrison, pconnell
2016-02-29 10:32:27polymorphmsetmessageid: <1456741947.08.0.906973071988.issue14157@psf.upfronthosting.co.za>
2016-02-29 10:32:27polymorphmlinkissue14157 messages
2016-02-29 10:32:26polymorphmcreate