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

EHN: handle frozenset in pprint #60828

Merged
merged 5 commits into from
Feb 5, 2025

Conversation

quangngd
Copy link
Contributor

@quangngd quangngd commented Feb 2, 2025

@quangngd
Copy link
Contributor Author

quangngd commented Feb 2, 2025

Only 1 test failing in the cleaning up process. Bet it would go away if we rerun it.
Please instruct of which whatsnew to add. As of the time of writing there are 2.3.0 and 3.0.0

Copy link
Member

@mroeschke mroeschke left a comment

Choose a reason for hiding this comment

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

v3.0.0.rst is the appropriate place for the whatsnew note

@mroeschke mroeschke added the Output-Formatting __repr__ of pandas objects, to_string label Feb 3, 2025
@quangngd
Copy link
Contributor Author

quangngd commented Feb 4, 2025

@mroeschke whatsnew added

@mroeschke mroeschke added this to the 3.0 milestone Feb 4, 2025
@mroeschke
Copy link
Member

pre-commit.ci autofix

@mroeschke mroeschke merged commit 0e245de into pandas-dev:main Feb 5, 2025
38 of 42 checks passed
@mroeschke
Copy link
Member

Thanks again @quangngd

Copy link
Contributor

@wjandrea wjandrea left a comment

Choose a reason for hiding this comment

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

Should I open a new PR to fix this?

@@ -82,6 +82,9 @@ def test_repr_dict(self):
def test_repr_mapping(self):
assert printing.pprint_thing(MyMapping()) == "{'a': 4, 'b': 4}"

def test_repr_frozenset(self):
assert printing.pprint_thing(frozenset([1, 2])) == "frozenset(1, 2)"
Copy link
Contributor

@wjandrea wjandrea Feb 6, 2025

Choose a reason for hiding this comment

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

The output should have braces: frozenset({1, 2})

Copy link
Contributor

Choose a reason for hiding this comment

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

I opened #60867

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Output-Formatting __repr__ of pandas objects, to_string
Projects
None yet
Development

Successfully merging this pull request may close these issues.

ENH: frozensets are shown in parentheses (like tuples)
3 participants