summaryrefslogtreecommitdiffstats
path: root/Modules/cPickle.c
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2003-02-05 03:53:10 (GMT)
committerTim Peters <tim.peters@gmail.com>2003-02-05 03:53:10 (GMT)
commit6288e230d8a6d3de89eda2371115208fcea5573f (patch)
treeab87c8e985d69ba879ffe2f6af7114f813d8266f /Modules/cPickle.c
parent679201467b668e4c65623828b4be762ba20641dc (diff)
downloadcpython-6288e230d8a6d3de89eda2371115208fcea5573f.zip
cpython-6288e230d8a6d3de89eda2371115208fcea5573f.tar.gz
cpython-6288e230d8a6d3de89eda2371115208fcea5573f.tar.bz2
More typo repair.
Diffstat (limited to 'Modules/cPickle.c')
-rw-r--r--Modules/cPickle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/cPickle.c b/Modules/cPickle.c
index 27d8db8..5452713 100644
--- a/Modules/cPickle.c
+++ b/Modules/cPickle.c
@@ -1959,7 +1959,7 @@ save_global(Picklerobject *self, PyObject *args, PyObject *name)
/* Verify py_code has the right type and value. */
if (!PyInt_Check(py_code)) {
cPickle_ErrFormat(PicklingError, "Can't pickle %s: "
- "extension code %s isn't n integer",
+ "extension code %s isn't an integer",
"OO", args, py_code);
goto finally;
}