Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Short circuit watched bits check if no more bits are set
  • Loading branch information
carljm committed Oct 20, 2022
commit 22d190b0adced2a90130624e6e172224eb1a7741
6 changes: 4 additions & 2 deletions Objects/typeobject.c
Original file line number Diff line number Diff line change
Expand Up @@ -488,14 +488,16 @@ PyType_Modified(PyTypeObject *type)

if (type->tp_watched) {
PyInterpreterState *interp = _PyInterpreterState_GET();
char bits = type->tp_watched;
for (int i = 0; i < TYPE_MAX_WATCHERS; i++) {
int bits = type->tp_watched;
int i = 0;
while(bits && i < TYPE_MAX_WATCHERS) {
Comment thread
erlend-aasland marked this conversation as resolved.
if (bits & 1) {
PyType_WatchCallback cb = interp->type_watchers[i];
if (cb && (cb(type) < 0)) {
PyErr_WriteUnraisable((PyObject *)type);
}
}
i += 1;
bits >>= 1;
}
}
Expand Down