diff options
author | Victor Stinner <vstinner@python.org> | 2023-05-24 22:40:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-24 22:40:30 (GMT) |
commit | 087c1a6539eac330372a8b759bf3e2d472f6148a (patch) | |
tree | 884c5f564140d56fe25141d657ca62d962cb26e7 /Doc/library/pickle.rst | |
parent | 17e1fe0f9ba87eb170493daa0a4de207425195fd (diff) | |
download | cpython-087c1a6539eac330372a8b759bf3e2d472f6148a.zip cpython-087c1a6539eac330372a8b759bf3e2d472f6148a.tar.gz cpython-087c1a6539eac330372a8b759bf3e2d472f6148a.tar.bz2 |
gh-104773: PEP 594: Remove the xdrlib module (#104900)
pickle documentation no longer mentions the XDR format.
Diffstat (limited to 'Doc/library/pickle.rst')
-rw-r--r-- | Doc/library/pickle.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/pickle.rst b/Doc/library/pickle.rst index 79476b0..ba00ba2 100644 --- a/Doc/library/pickle.rst +++ b/Doc/library/pickle.rst @@ -125,7 +125,7 @@ Data stream format The data format used by :mod:`pickle` is Python-specific. This has the advantage that there are no restrictions imposed by external standards such as -JSON or XDR (which can't represent pointer sharing); however it means that +JSON (which can't represent pointer sharing); however it means that non-Python programs may not be able to reconstruct pickled Python objects. By default, the :mod:`pickle` data format uses a relatively compact binary |