summaryrefslogtreecommitdiffstats
path: root/Doc/library/pickle.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/library/pickle.rst')
-rw-r--r--Doc/library/pickle.rst8
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/library/pickle.rst b/Doc/library/pickle.rst
index 93387fb..cfb251f 100644
--- a/Doc/library/pickle.rst
+++ b/Doc/library/pickle.rst
@@ -345,6 +345,10 @@ The :mod:`pickle` module exports three classes, :class:`Pickler`,
See :ref:`pickle-persistent` for details and examples of uses.
+ .. versionchanged:: 3.13
+ Add the default implementation of this method in the C implementation
+ of :class:`!Pickler`.
+
.. attribute:: dispatch_table
A pickler object's dispatch table is a registry of *reduction
@@ -446,6 +450,10 @@ The :mod:`pickle` module exports three classes, :class:`Pickler`,
See :ref:`pickle-persistent` for details and examples of uses.
+ .. versionchanged:: 3.13
+ Add the default implementation of this method in the C implementation
+ of :class:`!Unpickler`.
+
.. method:: find_class(module, name)
Import *module* if necessary and return the object called *name* from it,