]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-145980: Fix copy/paste mistake in binascii.c (#146230)
authorVictor Stinner <vstinner@python.org>
Fri, 20 Mar 2026 18:12:10 +0000 (19:12 +0100)
committerGitHub <noreply@github.com>
Fri, 20 Mar 2026 18:12:10 +0000 (18:12 +0000)
Modules/binascii.c

index f85f32b32e962c79704250772d082ac3dff77fc2..ebade54173d11b313fba6b075cea8e6363cbca08 100644 (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;
 }