main commit
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-10-16 16:30:25 +09:00
parent 91c7e04474
commit 537e7b363f
1146 changed files with 45926 additions and 77196 deletions

View File

@@ -54,9 +54,6 @@ def _boundmethod_safe_weakref(obj):
def _make_lookup_key(receiver, sender, dispatch_uid):
if dispatch_uid:
return (dispatch_uid, _make_id(sender))
# Issue #9119 - retry-wrapped functions use the underlying function for dispatch_uid
elif hasattr(receiver, '_dispatch_uid'):
return (receiver._dispatch_uid, _make_id(sender))
else:
return (_make_id(receiver), _make_id(sender))
@@ -173,7 +170,6 @@ class Signal: # pragma: no cover
# it up later with the original func id
options['dispatch_uid'] = _make_id(fun)
fun = _retry_receiver(fun)
fun._dispatch_uid = options['dispatch_uid']
self._connect_signal(fun, sender, options['weak'],
options['dispatch_uid'])