-
-
Notifications
You must be signed in to change notification settings - Fork 33.7k
bpo-20185: Convert the marshal module to Argument Clinic. #541
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-20185: Convert the marshal module to Argument Clinic. #541
Conversation
Based on patch by Vajrasky Kok.
|
@serhiy-storchaka, thanks for your PR! By analyzing the history of the files in this pull request, we identified @kristjanvalur, @vsajip, @benjaminp, @tim-one and @Yhg1s to be potential reviewers. |
Python/marshal.c
Outdated
| Indicates the data format that dumps should use. | ||
| / | ||
| Return the string that would be written to a file by dump(value, file). |
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.
Maybe, 'string' should be 'bytes' in Python 3.
But it's unrelated to this pull request, because old docstring says it 'string' too.
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.
Ah, that is why I still have not pushed this patch! I noticed this when wrote the patch but forgot to open separate issue. Now it is opened: bpo-29746.
|
Looks okay to me |
Bumps [celery](https://github.com/celery/celery) from 5.2.3 to 5.2.6. - [Release notes](https://github.com/celery/celery/releases) - [Changelog](https://github.com/celery/celery/blob/v5.2.6/Changelog.rst) - [Commits](celery/celery@v5.2.3...v5.2.6) --- updated-dependencies: - dependency-name: celery dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Mariatta Wijaya <[email protected]>
Based on patch by Vajrasky Kok.