diff options
author | Tim Peters <tim.peters@gmail.com> | 2003-01-28 00:23:36 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2003-01-28 00:23:36 (GMT) |
commit | b377f8ac3eb0224a6342e1edc74dd3158e31dab2 (patch) | |
tree | 0bbc6ebed5d221453f6d30067533a1ffdc8724a0 /Lib | |
parent | e105478a0cbdf4d705e48456a9819408440c05f2 (diff) | |
download | cpython-b377f8ac3eb0224a6342e1edc74dd3158e31dab2.zip cpython-b377f8ac3eb0224a6342e1edc74dd3158e31dab2.tar.gz cpython-b377f8ac3eb0224a6342e1edc74dd3158e31dab2.tar.bz2 |
clear_memo(): Repaired grammar in docstring.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/pickle.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/pickle.py b/Lib/pickle.py index 2d6710b..47a61ae 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() |