]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
[3.13] gh-130959: Reject whitespace in fractions, in pure Python `fromisoformat(...
authorVictor Stinner <vstinner@python.org>
Tue, 11 Mar 2025 11:39:27 +0000 (12:39 +0100)
committerGitHub <noreply@github.com>
Tue, 11 Mar 2025 11:39:27 +0000 (12:39 +0100)
commit27fd328cf68e5d812cdb7f9533a16dd68d911c54
tree344878318d12a83e000e166ddad5f134eca8c382
parent68a1591bec822ea0818be885b0883bc170ab1a7d
[3.13] gh-130959: Reject whitespace in fractions, in pure Python `fromisoformat()` (#130962) (#131076)

gh-130959: Reject whitespace in fractions, in pure Python `fromisoformat()` (#130962)

Fix the pure Python implementation of `fromisoformat()` to reject any
non-digit characters, including whitespace, in the fractional part
of time specification.  This makes the behavior consistent with the C
implementation, and prevents incorrect parsing of these fractions
(e.g. `.400 ` would be misinterpreted as `.04`).

Co-authored-by: Peter Bierma <zintensitydev@gmail.com>
Co-authored-by: Paul Ganssle <1377457+pganssle@users.noreply.github.com>
(cherry picked from commit 33494b4d0dafc34ff4f1c118b7b3b5d8de3dd0f4)

Co-authored-by: Michał Górny <mgorny@gentoo.org>
Lib/_pydatetime.py
Lib/test/datetimetester.py
Misc/NEWS.d/next/Library/2025-03-07-19-24-27.gh-issue-130959.xO8vVS.rst [new file with mode: 0644]