-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
DOC: to_pickle
function takes pickle v5 but doc says only 1-4 supported
#37316
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
Thanks for the catch, indeed a good easy issue! |
to_pickle
function takes pickle v5 but doc says only 1-4 supported (easy doc fix, first timer suggested)to_pickle
function takes pickle v5 but doc says only 1-4 supported
I will take this one |
take |
botplex
added a commit
to botplex/pandas
that referenced
this issue
Oct 21, 2020
1 task
jreback
pushed a commit
that referenced
this issue
Oct 22, 2020
botplex
added a commit
to botplex/pandas
that referenced
this issue
Oct 22, 2020
JulianWgs
pushed a commit
to JulianWgs/pandas
that referenced
this issue
Oct 26, 2020
kesmit13
pushed a commit
to kesmit13/pandas
that referenced
this issue
Nov 2, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Location of the documentation
Documentation problem
The docstring states
DataFrame.to_pickle(path, compression='infer', protocol=5, storage_options=None)
noting protocol 5 by default, the Parameters following text notes "The possible values are 0, 1, 2, 3, 4" which does not include protocol 5.Suggested fix for documentation
Add "5" to the docs: "The possible values are 0, 1, 2, 3, 4, 5" which was included from Python 3.8 https://docs.python.org/3/library/pickle.html
The text was updated successfully, but these errors were encountered: