Commit fa05ce3c authored by Tim Peters's avatar Tim Peters

Typo in comment.

parent 2d629657
...@@ -3775,7 +3775,7 @@ load_extension(Unpicklerobject *self, int nbytes) ...@@ -3775,7 +3775,7 @@ load_extension(Unpicklerobject *self, int nbytes)
return -1; return -1;
} }
/* Since the extension registry is manipulable via Python code, /* 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 || if (!PyTuple_Check(pair) || PyTuple_Size(pair) != 2 ||
!PyString_Check(module_name = PyTuple_GET_ITEM(pair, 0)) || !PyString_Check(module_name = PyTuple_GET_ITEM(pair, 0)) ||
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment