Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Color.hex #3379

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open

Add Color.hex #3379

wants to merge 4 commits into from

Conversation

damusss
Copy link
Member

@damusss damusss commented Mar 11, 2025

Followed the New API routine for this property. FAQ below.

Why, if it can be done in one line?

That's not a reason not to add a shortcut. Other color shortcuts like Color.normalized can be achieved in one line aswell, plus, how to get the Color hex with one line is not very straight forward.

Can't you use the built in hex function?

That function wasn't made for correct representation of hex colors, so Color(hex(Color)) can easily error, for example in the following cases: hex(Color(1, 2, 3)) -> "0x10203ff" (no trailing zero; ValueError) or hex(Color(0, 0, 0, 255)) -> "'0xff" (not long enough; ValueError).

@damusss damusss added New API This pull request may need extra debate as it adds a new class or function to pygame color pygame.color labels Mar 11, 2025
@damusss damusss requested a review from a team as a code owner March 11, 2025 14:55
Copy link
Member

@ankith26 ankith26 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, thanks! 💯

As it is new API, requesting atleast 2 more approvals in addition to mine, having more eyes on this PR will be better.

Copy link
Member

@Matiiss Matiiss left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, left a couple comments, but nothing that would necessarily have to block this PR

| :sl:`Gets or sets the stringified hexadecimal representation of the Color.`
| :sg:`hex -> str`

The strigified hexadecimal representation of the Color. The hexadecimal string
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

strigified -> stringified

| :sg:`hex -> str`

The strigified hexadecimal representation of the Color. The hexadecimal string
is formatted as ``"#rrggbbaa"`` where rr, gg, bb, and aa are 2 digits hex numbers
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

digits -> digit
optional: 2 -> two

@damusss
Copy link
Member Author

damusss commented Mar 24, 2025

all suggestions are good I'll fix them today

@ankith26
Copy link
Member

The latest commit broke formatting of a test file.

This little maneuver took 15 hours! on my Android
@aatle
Copy link
Contributor

aatle commented Apr 1, 2025

Checks seem to be failing because of a bug in package pyproject-metadata, see pypa/pyproject-metadata#239: fixed but affects version 0.9.1.
I think this issue can be fixed by requiring "pyproject-metadata!=0.9.1".

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
color pygame.color New API This pull request may need extra debate as it adds a new class or function to pygame
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants