Skip to content

Commit

Permalink
revert non-intended changes
Browse files Browse the repository at this point in the history
  • Loading branch information
picnixz committed Jun 18, 2024
1 parent 52ce758 commit 35711e2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Modules/_testcapimodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -1089,7 +1089,7 @@ test_capsule(PyObject *self, PyObject *Py_UNUSED(ignored))
PyErr_Clear();
}

exit:
exit:
if (error) {
return raiseTestError(self, "test_capsule", error);
}
Expand Down Expand Up @@ -1975,7 +1975,8 @@ py_w_stopcode(PyObject *self, PyObject *args)


static PyObject *
test_pythread_tss_key_state(PyObject *self, PyObject *args) {
test_pythread_tss_key_state(PyObject *self, PyObject *args)
{
Py_tss_t tss_key = Py_tss_NEEDS_INIT;
if (PyThread_tss_is_created(&tss_key)) {
return raiseTestError(self, "test_pythread_tss_key_state",
Expand Down

0 comments on commit 35711e2

Please sign in to comment.