Issue 3164. Small fix to don't repeat a comparation

without necessity.
This commit is contained in:
Facundo Batista 2008-06-22 15:27:10 +00:00
parent 2126bab8f0
commit 1461886eee
1 changed files with 2 additions and 0 deletions

View File

@ -2366,6 +2366,7 @@ save(Picklerobject *self, PyObject *args, int pers_save)
res = save_string(self, args, 0);
goto finally;
}
break;
#ifdef Py_USING_UNICODE
case 'u':
@ -2373,6 +2374,7 @@ save(Picklerobject *self, PyObject *args, int pers_save)
res = save_unicode(self, args, 0);
goto finally;
}
break;
#endif
}