8000 Update pickle.rst by geryogam · Pull Request #24776 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

Update pickle.rst #24776

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

Merged
merged 8 commits into from
Apr 7, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove an implicit method parameter self
  • Loading branch information
geryogam authored Mar 6, 2021
commit b01358345706db23f9a66257b1dff4ecdc85c86d
2 changes: 1 addition & 1 deletion Doc/library/pickle.rst
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ The :mod:`pickle` module exports three classes, :class:`Pickler`,

.. versionadded:: 3.3

.. method:: reducer_override(self, obj)
.. method:: reducer_override(obj)

Special reducer that can be defined in :class:`Pickler` subclasses. This
method has priority over any reducer in the :attr:`dispatch_table`. It
Expand Down
0