Opened 10 years ago
Closed 10 years ago
#12665 closed bug (fixed)
Callbacks objects with "unique" flag will iterate over a function's methods when it is added a second time
Reported by: | jaubourg | Owned by: | jaubourg |
---|---|---|---|
Priority: | blocker | Milestone: | 1.8.3 |
Component: | deferred | Version: | git |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Culprit is too wide a test that will make Callbacks.add iterate over a function that is defined with at least a single parameter and has already been added to the same Callbacks instance.
Change History (2)
comment:1 Changed 10 years ago by
Component: | unfiled → deferred |
---|---|
Milestone: | None → 1.8.3 |
Owner: | set to jaubourg |
Priority: | undecided → blocker |
Status: | new → assigned |
comment:2 Changed 10 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Note: See
TracTickets for help on using
tickets.
Do not iterate over functions. Fixes #12665. Unit tests added. Thanks to @kselden for finding the bug.