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-31522: mailbox: pass from_
parameter to get_bytes
#9857
Conversation
@@ -0,0 +1 @@ | |||
In `mailbox._mboxMMDF.get_string`, pass *from_* parameter to ``get_bytes``. |
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.
This describes what was done, but the changelog should in general describe the externally visible affects of the change. In this case, I would write "The mailbox mbox get_string function from_
parameter can now successfully be set to a non-default value".
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.
Thanks for the suggestion! :-)
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 |
I have made the requested changes; please review again. |
Thanks for making the requested changes! @bitdancer: please review the changes made to this pull request. |
@bitdancer: Please replace |
…ython#9857) This allows *from_* to be successfully set to a non-default value when calling mbox.get_string.
Added tests that failed before the change and pass after the change.
https://bugs.python.org/issue31522