Uh oh!
There was an error while loading. Please reload this page.
gh-131798: do not watch immutable types in JIT - #148383
Conversation
Uh oh!
There was an error while loading. Please reload this page.
Fidget-Spinner
commented
Apr 11, 2026
I just merged a PR that watches more types 1c89817 I assume those don't need to be checked, as immutable types usually have no Also can you edit your PR description to explain why (e.g. reduce the chance of false positive in bloom filter). |
kumaraditya303
commented
Apr 11, 2026
Immutable types does not mean that the object is immutable too, like dict so it can have
Edited. |
Fidget-Spinner
commented
Apr 11, 2026
Oh ok. In that case, please pull in main and do the same then. Thanks! |
Uh oh!
There was an error while loading. Please reload this page.
Immutable types cannot change so there is no need to add type watcher to them and add it to bloom filter. This reduces the false positive from bloom filters.