summaryrefslogtreecommitdiffstats
path: root/Modules/_pickle.c
diff options
context:
space:
mode:
Diffstat (limited to 'Modules/_pickle.c')
-rw-r--r--Modules/_pickle.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_pickle.c b/Modules/_pickle.c
index 36aa9e0..9410e52 100644
--- a/Modules/_pickle.c
+++ b/Modules/_pickle.c
@@ -2816,7 +2816,7 @@ save_ellipsis(PicklerObject *self, PyObject *obj)
{
PyObject *str = PyUnicode_FromString("Ellipsis");
if (str == NULL)
- return -1;
+ return -1;
return save_global(self, Py_Ellipsis, str);
}
@@ -2825,7 +2825,7 @@ save_notimplemented(PicklerObject *self, PyObject *obj)
{
PyObject *str = PyUnicode_FromString("NotImplemented");
if (str == NULL)
- return -1;
+ return -1;
return save_global(self, Py_NotImplemented, str);
}