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.

classification
Title: Document an alternative to ISO 8601 parsing
Type: enhancement Stage: resolved
Components: Documentation Versions: Python 3.9, Python 3.8, Python 3.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: p-ganssle Nosy List: miss-islington, p-ganssle, pitrou
Priority: low Keywords: patch

Created on 2019-08-29 14:39 by p-ganssle, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 15596 merged p-ganssle, 2019-08-29 14:41
PR 15597 merged miss-islington, 2019-08-29 14:48
PR 15598 merged miss-islington, 2019-08-29 14:48
Messages (5)
msg350784 - (view) Author: Paul Ganssle (p-ganssle) * (Python committer) Date: 2019-08-29 14:39
Per Antoine's comment in the discourse thread ( https://discuss.python.org/t/parse-z-timezone-suffix-in-datetime/2220/6 ): 

> ... the doc isn’t helpful, as it doesn’t give any alternative.

I think we can link to dateutil.parser.isoparse as an alternative. I'm happy to field other options for ISO 8601 parsers instead, though considering that fromisoformat is adapted from dateutil.parser.isoparse, it seems reasonable to link them.
msg350786 - (view) Author: miss-islington (miss-islington) Date: 2019-08-29 14:47
New changeset 59725f3badb3028636c8906ecac4ceb0a37f3982 by Miss Islington (bot) (Paul Ganssle) in branch 'master':
bpo-37979: Add alternative to fromisoformat in documentation (GH-15596)
https://github.com/python/cpython/commit/59725f3badb3028636c8906ecac4ceb0a37f3982
msg350788 - (view) Author: miss-islington (miss-islington) Date: 2019-08-29 14:54
New changeset 8ba8cc51a9899594f7fe66fe790973d83fd3d657 by Miss Islington (bot) in branch '3.7':
bpo-37979: Add alternative to fromisoformat in documentation (GH-15596)
https://github.com/python/cpython/commit/8ba8cc51a9899594f7fe66fe790973d83fd3d657
msg350789 - (view) Author: miss-islington (miss-islington) Date: 2019-08-29 14:54
New changeset 9db66a2b5ab6a302bc46421712f13b0afd94654b by Miss Islington (bot) in branch '3.8':
bpo-37979: Add alternative to fromisoformat in documentation (GH-15596)
https://github.com/python/cpython/commit/9db66a2b5ab6a302bc46421712f13b0afd94654b
msg350790 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2019-08-29 14:55
Thanks for contributing this, Paul!
History
Date User Action Args
2022-04-11 14:59:19adminsetgithub: 82160
2019-08-29 14:55:44pitrousetstatus: open -> closed

nosy: + pitrou
messages: + msg350790

resolution: fixed
stage: patch review -> resolved
2019-08-29 14:54:40miss-islingtonsetmessages: + msg350789
2019-08-29 14:54:07miss-islingtonsetmessages: + msg350788
2019-08-29 14:48:11miss-islingtonsetpull_requests: + pull_request15274
2019-08-29 14:48:04miss-islingtonsetpull_requests: + pull_request15273
2019-08-29 14:47:55miss-islingtonsetnosy: + miss-islington
messages: + msg350786
2019-08-29 14:41:58p-gansslesetkeywords: + patch
stage: needs patch -> patch review
pull_requests: + pull_request15272
2019-08-29 14:39:34p-gansslecreate