-
-
Notifications
You must be signed in to change notification settings - Fork 30.9k
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-45125: Improves pickling docs and tests for shared_memory
#28294
Conversation
Oh, I forgot about |
@serhiy-storchaka I think that this is ready for the first round of review 👍 |
@serhiy-storchaka friendly ping 🙂 |
Lib/test/_test_multiprocessing.py
Outdated
self.assertEqual( | ||
bytes(sms.buf[0:6]), bytes(sms2.buf[0:6]), b'pickle') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It perhaps does not work as you expected. The third argument is a message and usually should be string.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, that's not how I expected this to work! TIL 👍
A Python core developer has requested some changes be made to your pull request before we can consider merging it. If you could please address their requests along with any other requests in other reviews from core developers that would be appreciated. Once you have made the requested changes, please leave a comment on this pull request containing the phrase |
@serhiy-storchaka thanks a lot! I've also rebased this onto the latest I have made the requested changes; please review again (to make bot happy). |
Thanks for making the requested changes! @serhiy-storchaka: please review the changes made to this pull request. |
Oups, done 🙂 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
Thanks @sobolevn for the PR, and @serhiy-storchaka for merging it 🌮🎉.. I'm working now to backport this PR to: 3.9, 3.10. |
Sorry @sobolevn and @serhiy-storchaka, I had trouble checking out the |
Sorry, @sobolevn and @serhiy-storchaka, I could not cleanly backport this to |
Thanks @sobolevn for the PR, and @serhiy-storchaka for merging it 🌮🎉.. I'm working now to backport this PR to: 3.10. |
Sorry @sobolevn and @serhiy-storchaka, I had trouble checking out the |
Thanks @sobolevn for the PR, and @serhiy-storchaka for merging it 🌮🎉.. I'm working now to backport this PR to: 3.10. |
GH-28675 is a backport of this pull request to the 3.10 branch. |
…onGH-28294) (cherry picked from commit 746d648) Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
https://bugs.python.org/issue45125