aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/libpyside/globalreceiverv2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside6/libpyside/globalreceiverv2.cpp')
-rw-r--r--sources/pyside6/libpyside/globalreceiverv2.cpp11
1 files changed, 1 insertions, 10 deletions
diff --git a/sources/pyside6/libpyside/globalreceiverv2.cpp b/sources/pyside6/libpyside/globalreceiverv2.cpp
index b8c542eb1..8289eaff6 100644
--- a/sources/pyside6/libpyside/globalreceiverv2.cpp
+++ b/sources/pyside6/libpyside/globalreceiverv2.cpp
@@ -106,16 +106,7 @@ GlobalReceiverKey DynamicSlotDataV2::key(PyObject *callback)
Shiboken::AutoDecRef func(PyObject_GetAttr(callback, PySide::PySideName::im_func()));
return {self, func};
}
- // PYSIDE-2299: Callbacks can have the same code, but we only need one GlobalReceiverV2 for all
- // of them. If we used the callback itself instead of the code object, we would
- // create a new GlobalReceiverV2 for each in SignalManager::globalReceiver()
- // (signalmanager.cpp), leaking memory.
-
- // TODO: Need proper fix. This is temporary
- if (std::strcmp(Py_TYPE(callback)->tp_name, "functools.partial") == 0)
- return {nullptr, callback};
-
- return {nullptr, PyFunction_GetCode(callback)};
+ return {nullptr, callback};
}
PyObject *DynamicSlotDataV2::callback()