diff options
author | Georg Brandl <georg@python.org> | 2010-11-30 14:57:54 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-11-30 14:57:54 (GMT) |
commit | 5aa580f27905d6e844e0ba6cf72b04f2d6d10987 (patch) | |
tree | 04604d65432f3d142a7479b303b032a6821642c4 /Doc/library/pickle.rst | |
parent | e5b99f0fb306b80118849048b3d145c1a614c38b (diff) | |
download | cpython-5aa580f27905d6e844e0ba6cf72b04f2d6d10987.zip cpython-5aa580f27905d6e844e0ba6cf72b04f2d6d10987.tar.gz cpython-5aa580f27905d6e844e0ba6cf72b04f2d6d10987.tar.bz2 |
Fix typo.
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 1b533f3..73f0611 100644 --- a/Doc/library/pickle.rst +++ b/Doc/library/pickle.rst @@ -42,7 +42,7 @@ general :mod:`pickle` should always be the preferred way to serialize Python objects. :mod:`marshal` exists primarily to support Python's :file:`.pyc` files. -The :mod:`pickle` module differs from :mod:`marshal` several significant ways: +The :mod:`pickle` module differs from :mod:`marshal` in several significant ways: * The :mod:`pickle` module keeps track of the objects it has already serialized, so that later references to the same object won't be serialized again. |