summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorAlexandre Vassalotti <alexandre@peadrop.com>2009-04-03 06:19:27 (GMT)
committerAlexandre Vassalotti <alexandre@peadrop.com>2009-04-03 06:19:27 (GMT)
commit1102062abb05e6558ecd93b014e532014b8eb4bf (patch)
tree10bf41ce0d771a02945d40d35605f301f5570a54 /Doc
parent9d7665df93294121a7649f7b5c761bb8a0cab277 (diff)
downloadcpython-1102062abb05e6558ecd93b014e532014b8eb4bf.zip
cpython-1102062abb05e6558ecd93b014e532014b8eb4bf.tar.gz
cpython-1102062abb05e6558ecd93b014e532014b8eb4bf.tar.bz2
Emphasize that Unpickler.memo is not necessarily a dict.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/pickle.rst5
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/library/pickle.rst b/Doc/library/pickle.rst
index 0a958a7..6c2b269 100644
--- a/Doc/library/pickle.rst
+++ b/Doc/library/pickle.rst
@@ -334,8 +334,9 @@ The :mod:`pickle` module exports two classes, :class:`Pickler` and
.. attribute:: memo
- Dictionary holding previously unpickled objects to allow shared or
- recursive objects to unpickled by reference as opposed to by value.
+ Dictionary-like object holding previously unpickled objects to allow
+ shared or recursive objects to unpickled by reference as opposed to
+ by value.
.. _pickle-picklable: