[issue37962] Improve ISO 8601 timezone support in the datetime.fromisoformat() method

Zeth report at bugs.python.org
Tue Aug 27 08:07:38 EDT 2019


New submission from Zeth <theology at gmail.com>:

The datetime.datetime.fromisoformat() method unnecessarily rejects datetime strings that are valid under ISO 8601 if timezone uses the UTC  designator or it only has hours.

In ISO 8601, section 4.2.5.1: "When it is required to indicate the difference between local time and UTC of day, the representation of the difference can be expressed in hours and minutes, or hours only."

And Section 4.2.4, UTC shall be expressed "by the UTC designator [Z]".

A key use case of the latter is being able to parse JavaScript Date objects (e.g. dates that have come from a web frontend or a JSON document). This considerably improves the usefulness of the datetime.fromisoformat method.

----------
messages: 350630
nosy: zeth
priority: normal
pull_requests: 15224
severity: normal
status: open
title: Improve ISO 8601 timezone support in the datetime.fromisoformat() method

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue37962>
_______________________________________


More information about the Python-bugs-list mailing list