diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2016-06-11 19:06:08 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2016-06-11 19:06:08 (GMT) |
commit | 4da945f361cda03104548f49bad690a54b0209f7 (patch) | |
tree | ed25742482aca03601d01a6c6fccc65a5e0ded2c /Doc/library/pickle.rst | |
parent | e670be2273f93dfc262e16ebc27f0d453f15fa21 (diff) | |
parent | fa089b9b0b926c04e5d57812b7d7653472787965 (diff) | |
download | cpython-4da945f361cda03104548f49bad690a54b0209f7.zip cpython-4da945f361cda03104548f49bad690a54b0209f7.tar.gz cpython-4da945f361cda03104548f49bad690a54b0209f7.tar.bz2 |
Merge Issue #22558.
Diffstat (limited to 'Doc/library/pickle.rst')
-rw-r--r-- | Doc/library/pickle.rst | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/Doc/library/pickle.rst b/Doc/library/pickle.rst index 2419277..6e8430f 100644 --- a/Doc/library/pickle.rst +++ b/Doc/library/pickle.rst @@ -1,6 +1,14 @@ :mod:`pickle` --- Python object serialization ============================================= +.. module:: pickle + :synopsis: Convert Python objects to streams of bytes and back. + +.. sectionauthor:: Jim Kerr <jbkerr@sr.hp.com>. +.. sectionauthor:: Barry Warsaw <barry@python.org> + +**Source code:** :source:`Lib/pickle.py` + .. index:: single: persistence pair: persistent; objects @@ -9,11 +17,7 @@ pair: flattening; objects pair: pickling; objects -.. module:: pickle - :synopsis: Convert Python objects to streams of bytes and back. -.. sectionauthor:: Jim Kerr <jbkerr@sr.hp.com>. -.. sectionauthor:: Barry Warsaw <barry@python.org> - +-------------- The :mod:`pickle` module implements binary protocols for serializing and de-serializing a Python object structure. *"Pickling"* is the process |