We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This maybe is just a doc warning - but caught me by surprise. I would prefer the read_csv behavior, but it would be backwards incompatible.
read_csv
In [57]: pd.read_csv('path/doesn_exist') --------------------------------------------------------------------------- IOError: File path/doesn_exist does not exist In [56]: pd.read_msgpack('path/doesn_exist') Out[56]: [112, 97, 116, 104, 47, 100, 111, 101, 115, 110, 95, 101, 120, 105, 115, 116] In [59]: pd.read_msgpack(u'path/doesn_exist') --------------------------------------------------------------------------- ValueError: path_or_buf needs to be a string file path or file-like
The text was updated successfully, but these errors were encountered:
xref #5924
Sorry, something went wrong.
Closed in favor of #15296
No branches or pull requests
This maybe is just a doc warning - but caught me by surprise. I would prefer the
read_csv
behavior, but it would be backwards incompatible.The text was updated successfully, but these errors were encountered: