mirror of
https://github.com/python/cpython.git
synced 2025-08-23 10:16:01 +00:00
gh-103906: Remove immortal refcounting in compile/marshal.c (gh-103922)
This commit is contained in:
parent
cdfb201bfa
commit
058b960535
3 changed files with 8 additions and 8 deletions
|
@ -26,7 +26,7 @@ ellipsis_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)
|
|||
PyErr_SetString(PyExc_TypeError, "EllipsisType takes no arguments");
|
||||
return NULL;
|
||||
}
|
||||
return Py_NewRef(Py_Ellipsis);
|
||||
return Py_Ellipsis;
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue