From fa05ce3c1d03fe9923fc962204d241b9cd3384d7 Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Tue, 4 Feb 2003 05:20:32 +0000 Subject: [PATCH] Typo in comment. --- Modules/cPickle.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/cPickle.c b/Modules/cPickle.c index a3a07b2169..6f09c1797b 100644 --- a/Modules/cPickle.c +++ b/Modules/cPickle.c @@ -3775,7 +3775,7 @@ load_extension(Unpicklerobject *self, int nbytes) return -1; } /* Since the extension registry is manipulable via Python code, - * confirm that obj is really a 2-tuple of strings. + * confirm that pair is really a 2-tuple of strings. */ if (!PyTuple_Check(pair) || PyTuple_Size(pair) != 2 || !PyString_Check(module_name = PyTuple_GET_ITEM(pair, 0)) || -- 2.50.1