Changes between Version 4 and Version 5 of Ticket #32727


Ignore:
Timestamp:
May 7, 2021, 8:34:17 PM (3 years ago)
Author:
Ben Wilber
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #32727 – Description

    v4 v5  
    2020Django's `django.utils.dateparse.parse_datetime` does not parse this correctly and returns `None`,
    2121
    22 However, `python-dateutil` parses it correctly.  The difference is that Django uses a very (brittle) to parse ISO-8601 datetime strings, and python-dateutil does not.
     22However, `python-dateutil` parses it correctly.  The difference is that Django uses a (brittle) regex to parse ISO-8601 datetime strings, and python-dateutil does not.
    2323
    2424https://github.com/dateutil/dateutil/blob/master/dateutil/parser/isoparser.py
Back to Top