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

DataFrame.dtypes.to_json OverflowError: Maximum recursion level reached #61171

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

Conversation

Aliebc
Copy link
Contributor

@Aliebc Aliebc commented Mar 23, 2025

@Aliebc Aliebc requested a review from WillAyd as a code owner March 23, 2025 20:16
@Aliebc Aliebc changed the title DataFrame.to_json OverflowError: Maximum recursion level reached DataFrame.dtypes.to_json OverflowError: Maximum recursion level reached Mar 24, 2025
Copy link
Member

@rhshadrach rhshadrach left a comment

Choose a reason for hiding this comment

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

Thanks for the PR! Am I correct in saying that the infinite recursion occurs because we never made it into one of the if/else if chain? Perhaps we should raise somehow if this occurs?

@rhshadrach rhshadrach added Bug IO JSON read_json, to_json, json_normalize labels Mar 29, 2025
)
def test_dtypes_to_json_consistency(df: DataFrame):
# GH 61170
expected = df.dtypes.apply(str).to_json()
Copy link
Member

Choose a reason for hiding this comment

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

Instead of creating multiple objects like this can you write out what the expected JSON representation is and compare that to the result of a to_json() call?

@pytest.mark.parametrize(
"df",
[
DataFrame({"A": [1, 2, 3], "B": [4, 5, 6]}),
Copy link
Member

Choose a reason for hiding this comment

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

Do we need parametrization for this? What makes the test cases different?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug IO JSON read_json, to_json, json_normalize
Projects
None yet
Development

Successfully merging this pull request may close these issues.

BUG: DataFrame.dtypes.to_json OverflowError: Maximum recursion level reached
3 participants