From: Tim Peters Date: Tue, 28 Jan 2003 00:23:36 +0000 (+0000) Subject: clear_memo(): Repaired grammar in docstring. X-Git-Tag: v2.3c1~2269 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b377f8ac3eb0224a6342e1edc74dd3158e31dab2;p=python clear_memo(): Repaired grammar in docstring. --- diff --git a/Lib/pickle.py b/Lib/pickle.py index 2d6710b126..47a61ae306 100644 --- a/Lib/pickle.py +++ b/Lib/pickle.py @@ -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()