https://github.com/python/cpython/commit/84fcdbd86ecd81f7cc793e22268a029ac6cf29c2
commit: 84fcdbd86ecd81f7cc793e22268a029ac6cf29c2
branch: main
author: Bénédikt Tran <[email protected]>
committer: picnixz <[email protected]>
date: 2025-12-27T14:30:09Z
summary:

gh-142664: fix `PyObject_Hash` invokation post GH-143217 (#143223)

files:
M Objects/memoryobject.c

diff --git a/Objects/memoryobject.c b/Objects/memoryobject.c
index f50de3e4c64071..f3b7e4a396b4a1 100644
--- a/Objects/memoryobject.c
+++ b/Objects/memoryobject.c
@@ -3235,9 +3235,9 @@ memory_hash(PyObject *_self)
             // Prevent 'self' from being freed when computing the item's hash.
             // See https://github.com/python/cpython/issues/142664.
             self->exports++;
-            int rc = PyObject_Hash(view->obj);
+            Py_hash_t h = PyObject_Hash(view->obj);
             self->exports--;
-            if (rc == -1) {
+            if (h == -1) {
                 /* Keep the original error message */
                 return -1;
             }

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3//lists/python-checkins.python.org
Member address: [email protected]

Reply via email to