On Tue, Dec 28, 2021 at 3:31 AM Marco Sulla <[email protected]> wrote: > > I need it since I'm developing an immutable dict. And in dict that > function is used. > > I do not understand why there's no public API for that function. It > seems very useful. >
I think it is useful only for optimization based on *current* Python internals. That's why it is not a public API. If we expose it as public API, it makes harder to change Python's GC internals. -- Inada Naoki <[email protected]> -- https://mail.python.org/mailman/listinfo/python-list
