[issue31839] datetime: add method to parse isoformat() output

2018-07-06 Thread Martin Panter
Change by Martin Panter : -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> datetime: add ability to parse RFC 3339 dates and times ___ Python tracker ___

[issue31839] datetime: add method to parse isoformat() output

2018-07-05 Thread Paul Ganssle
Paul Ganssle added the comment: This is a duplicate of #15873 and #24954 and can be closed, as `fromisoformat()` was added in Python 3.7. -- nosy: +p-ganssle ___ Python tracker _

[issue31839] datetime: add method to parse isoformat() output

2017-10-22 Thread SilentGhost
Change by SilentGhost : -- nosy: +belopolsky versions: +Python 3.7 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue31839] datetime: add method to parse isoformat() output

2017-10-21 Thread Oren Tirosh
New submission from Oren Tirosh : The object types in the datetime module can produce a standard string representation (rfc3339, a subset of iso8601) but they do not provide a method to parse it. Proposed method names: isoparse or fromisoformat. In addition, a constructor call with a single s