-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
Crash with access violation (exit code -1073741819 (0xC0000005)) on Windows 10 #32776
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
Comments
Can you try this on a newer version of pandas? |
New version seems to fix that t1 = {'a': 1, 'b': 1}
t2 = {'a': 2, 'b': 2}
test = [t1, t2],
pd.DataFrame(test)
0 1
{'a': 1, 'b': 1} {'a': 2, 'b': 2}
pd.__version__
'1.0.2' Latest version seems to fix it. However, I can reproduce the faulty behaviour in a fresh conda environment with the old pandas version. The thread may be closed. However, it should be checked if this problem was intentionally fixed at some point or its fixed by chance. |
Thanks @Mereep for the report. I can confirm this issue is a duplicate of #25691 was fixed in #25731 9fbb9e7 is the first new commit
|
I just try to reproduce the bug. For pandas<=0.24.2, running |
Guess this issue thread can be closed now... |
Short:
Problem description
Problem was caused in my case by having an additional comma at the end of a line that caused
a list of dicts being a tuple of list of dicts which caused that behaviour.
Althought the argument should not be accepted by Pandas, Pandas should raise an appropriate Exception instead of tearing Python down.
The text was updated successfully, but these errors were encountered: