diff options
author | Alexandre Vassalotti <alexandre@peadrop.com> | 2009-04-03 06:19:27 (GMT) |
---|---|---|
committer | Alexandre Vassalotti <alexandre@peadrop.com> | 2009-04-03 06:19:27 (GMT) |
commit | 1102062abb05e6558ecd93b014e532014b8eb4bf (patch) | |
tree | 10bf41ce0d771a02945d40d35605f301f5570a54 /Doc | |
parent | 9d7665df93294121a7649f7b5c761bb8a0cab277 (diff) | |
download | cpython-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.rst | 5 |
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: |