Skip to content

Commit

Permalink
removed check in copy
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco-Sulla committed Feb 1, 2022
1 parent 95ab72a commit 0aad598
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions frozendict/src/3_10/frozendictobject.c
Original file line number Diff line number Diff line change
Expand Up @@ -701,10 +701,6 @@ static PyObject* frozendict_copy(PyObject* o, PyObject* Py_UNUSED(ignored)) {
Py_INCREF(o);
return o;
}

if (! PyAnyFrozenDict_Check(o)) {
Py_RETURN_NOTIMPLEMENTED;
}

PyObject* args = PyTuple_New(1);

Expand Down

0 comments on commit 0aad598

Please sign in to comment.