Emphasize that Unpickler.memo is not necessarily a dict.

This commit is contained in:
Alexandre Vassalotti 2009-04-03 06:19:27 +00:00
parent 9d7665df93
commit 1102062abb
1 changed files with 3 additions and 2 deletions

View File

@ -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: