Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix merge
  • Loading branch information
erlend-aasland committed Jun 11, 2023
commit d4e7579e23311900ff15a87e93803572c8e16cf6
2 changes: 1 addition & 1 deletion Modules/_ssl.c
Original file line number Diff line number Diff line change
Expand Up @@ -6066,7 +6066,7 @@ sslmodule_init_errorcodes(PyObject *module)
Py_DECREF(mnemo);
return -1;
}
int rc = PyDict_SetItem(state->err_codes_to_names, key, mnemo);
int rc = PyDict_SetItem(state->err_names_to_codes, mnemo, key);
Py_DECREF(key);
Py_DECREF(mnemo);
if (rc < 0) {
Expand Down