diff options
author | Tim Peters <tim.peters@gmail.com> | 2003-01-28 00:24:43 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2003-01-28 00:24:43 (GMT) |
commit | cbd0a32d09a71efe14f9834bb20dc5b12852e44e (patch) | |
tree | 262f67fe3003ad23885159322982b720e7f391f6 /Lib | |
parent | b377f8ac3eb0224a6342e1edc74dd3158e31dab2 (diff) | |
download | cpython-cbd0a32d09a71efe14f9834bb20dc5b12852e44e.zip cpython-cbd0a32d09a71efe14f9834bb20dc5b12852e44e.tar.gz cpython-cbd0a32d09a71efe14f9834bb20dc5b12852e44e.tar.bz2 |
Repaired grammar in new comment.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/pickle.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/pickle.py b/Lib/pickle.py index 47a61ae..4e75416 100644 --- a/Lib/pickle.py +++ b/Lib/pickle.py @@ -213,7 +213,7 @@ class Pickler: # The use of the Unpickler memo length as the memo key is just a # convention. The only requirement is that the memo values be unique. # But there appears no advantage to any other scheme, and this - # scheme allows the Unpickler memo to implemented as a plain (but + # scheme allows the Unpickler memo to be implemented as a plain (but # growable) array, indexed by memo key. d = id(obj) memo_len = len(self.memo) |