X Tutup
Skip to content

[3.12] gh-106498: Revert incorrect colorsys.rgb_to_hls change (GH-106627)#106632

Merged
terryjreedy merged 1 commit intopython:3.12from
miss-islington:backport-a2d54d4-3.12
Jul 11, 2023
Merged

[3.12] gh-106498: Revert incorrect colorsys.rgb_to_hls change (GH-106627)#106632
terryjreedy merged 1 commit intopython:3.12from
miss-islington:backport-a2d54d4-3.12

Conversation

@miss-islington
Copy link
Contributor

@miss-islington miss-islington commented Jul 11, 2023

gh-86618 assumed a-b-c = a-(b+c) = a-d where d = b+d.
For floats 2.0, 1.0, and 0.9999999999999999, this assumption
is false. The net change of 1.1102230246251565e-16 to 0.0
results in division by 0. Revert the replacement. Add test.
(cherry picked from commit a2d54d4)

Co-authored-by: Terry Jan Reedy tjreedy@udel.edu

…H-106627)

pythongh-86618 assumed a-b-c = a-(b+c) = a-d where d = b+d.
For floats 2.0, 1.0, and 0.9999999999999999, this assumption
is false.  The net change of 1.1102230246251565e-16 to 0.0
results in division by 0.  Revert the replacement.  Add test.
(cherry picked from commit a2d54d4)

Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants

X Tutup