gh-145980: Fix copy/paste mistake in binascii.c (#146230)

This commit is contained in:
Victor Stinner
2026-03-20 19:12:10 +01:00
committed by GitHub
parent 6450b1d142
commit b36b87bcbb
-5
View File
@@ -2120,11 +2120,6 @@ binascii_exec(PyObject *module)
return -1;
}
state->reverse_table_cache = PyDict_New();
if (state->reverse_table_cache == NULL) {
return -1;
}
return 0;
}