summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/pickle.py6
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()