clear_memo(): Repaired grammar in docstring.

This commit is contained in:
Tim Peters 2003-01-28 00:23:36 +00:00
parent e105478a0c
commit b377f8ac3e
1 changed files with 3 additions and 3 deletions

View File

@ -183,9 +183,9 @@ class Pickler:
"""Clears the pickler's "memo".
The memo is the data structure that remembers which objects the
pickler has already seen, so that shared or recursive objects pickled
by reference and not by value. This method is useful when re-using
picklers.
pickler has already seen, so that shared or recursive objects are
pickled by reference and not by value. This method is useful when
re-using picklers.
"""
self.memo.clear()