We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0245c7 commit 674a246Copy full SHA for 674a246
Python/bytecodes.c
@@ -2641,12 +2641,6 @@ dummy_func(
2641
PyDictObject *dict = _PyObject_GetManagedDict(owner_o);
2642
DEOPT_IF(dict == NULL);
2643
DEOPT_IF(!LOCK_OBJECT(dict));
2644
- #ifdef Py_GIL_DISABLED
2645
- if (dict != _PyObject_GetManagedDict(owner_o)) {
2646
- UNLOCK_OBJECT(dict);
2647
- DEOPT_IF(true);
2648
- }
2649
- #endif
2650
assert(PyDict_CheckExact((PyObject *)dict));
2651
PyObject *name = GETITEM(FRAME_CO_NAMES, oparg);
2652
if (hint >= (size_t)dict->ma_keys->dk_nentries ||
0 commit comments