From: Tim Peters Date: Wed, 5 Feb 2003 03:53:10 +0000 (+0000) Subject: More typo repair. X-Git-Tag: v2.3c1~2034 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6288e230d8a6d3de89eda2371115208fcea5573f;p=python More typo repair. --- diff --git a/Modules/cPickle.c b/Modules/cPickle.c index 27d8db8459..5452713c93 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; }