-
-
Notifications
You must be signed in to change notification settings - Fork 32.1k
bpo-22005: Fixed unpickling instances of datetime classes pickled by Python 2. #11017
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
bpo-22005: Fixed unpickling instances of datetime classes pickled by Python 2. #11017
Conversation
…Python 2. errors='surrogateescape' should be used for successful decoding.
Thanks @serhiy-storchaka for the PR 🌮🎉.. I'm working now to backport this PR to: 3.6, 3.7. |
Sorry, @serhiy-storchaka, I could not cleanly backport this to |
Sorry, @serhiy-storchaka, I could not cleanly backport this to |
…ed by Python 2. (pythonGH-11017) encoding='latin1' should be used for successful decoding.. (cherry picked from commit 8452ca1) Co-authored-by: Serhiy Storchaka <[email protected]>
GH-11022 is a backport of this pull request to the 3.7 branch. |
…ed by Python 2. (pythonGH-11017) (pythonGH-11022) encoding='latin1' should be used for successful decoding. (cherry picked from commit 8452ca1) (cherry picked from commit 0d5730e) Co-authored-by: Serhiy Storchaka <[email protected]>
|
|
encoding='latin1' should be used for successful decoding.
(This is a copy of #794).
https://bugs.python.org/issue22005