Commit b377f8ac authored by Tim Peters's avatar Tim Peters

clear_memo(): Repaired grammar in docstring.

parent e105478a
...@@ -183,9 +183,9 @@ class Pickler: ...@@ -183,9 +183,9 @@ class Pickler:
"""Clears the pickler's "memo". """Clears the pickler's "memo".
The memo is the data structure that remembers which objects the The memo is the data structure that remembers which objects the
pickler has already seen, so that shared or recursive objects pickled pickler has already seen, so that shared or recursive objects are
by reference and not by value. This method is useful when re-using pickled by reference and not by value. This method is useful when
picklers. re-using picklers.
""" """
self.memo.clear() self.memo.clear()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment