diff options
author | Tim Peters <tim.peters@gmail.com> | 2003-02-04 05:20:32 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2003-02-04 05:20:32 (GMT) |
commit | fa05ce3c1d03fe9923fc962204d241b9cd3384d7 (patch) | |
tree | 1569b007d4b8ddb3f2906c46dbb7644ec5dbab9b | |
parent | 2d6296573478c83c29790d7164613c9194a69375 (diff) | |
download | cpython-fa05ce3c1d03fe9923fc962204d241b9cd3384d7.zip cpython-fa05ce3c1d03fe9923fc962204d241b9cd3384d7.tar.gz cpython-fa05ce3c1d03fe9923fc962204d241b9cd3384d7.tar.bz2 |
Typo in comment.
-rw-r--r-- | Modules/cPickle.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/cPickle.c b/Modules/cPickle.c index a3a07b2..6f09c17 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)) || |