This commit is contained in:
Antoine Pitrou 2013-11-23 21:06:21 +01:00
commit 6188d09f1c
1 changed files with 1 additions and 1 deletions

View File

@ -2951,7 +2951,7 @@ save_frozenset(PicklerObject *self, PyObject *obj)
iter = PyObject_GetIter(obj);
if (iter == NULL) {
return NULL;
return -1;
}
for (;;) {
PyObject *item;