summaryrefslogtreecommitdiff
path: root/Modules/_pickle.c
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-04-15 02:14:19 +0000
committerMartin Panter <vadmium+py@gmail.com>2016-04-15 02:14:19 +0000
commit1519a07d0be57bc3488998d535c32516f3ff319a (patch)
tree2f7b997868754f0eeb61252d5527ce6747783198 /Modules/_pickle.c
parent7268f32ddc602f59a1b09eff0845b4fc9299a95a (diff)
downloadcpython-1519a07d0be57bc3488998d535c32516f3ff319a.tar.gz
Correct ?an? ? ?a? with ?Unicode?, ?user?, ?UTF?, etc
This affects documentation, code comments, and a debugging messages.
Diffstat (limited to 'Modules/_pickle.c')
-rw-r--r--Modules/_pickle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_pickle.c b/Modules/_pickle.c
index 1acf14ade8..78cfe20384 100644
--- a/Modules/_pickle.c
+++ b/Modules/_pickle.c
@@ -1096,7 +1096,7 @@ _Unpickler_SkipConsumed(UnpicklerObject *self)
return 0;
assert(self->peek); /* otherwise we did something wrong */
- /* This makes an useless copy... */
+ /* This makes a useless copy... */
r = PyObject_CallFunction(self->read, "n", consumed);
if (r == NULL)
return -1;