[Python-Dev] Re: PEP 669: Low Impact Monitoring for CPython

2021-12-12 Thread Terry Reedy
On 12/7/2021 10:41 AM, Mark Shannon wrote: I would like to announce latest PEP, PEP 669: Low Impact Monitoring for CPython. The aim of this PEP is to provide an API for profilers, debuggers and other tools to avoid the punitive overhead of using sys.settrace. If you have any interest in

[Python-Dev] Re: PEP 669: Low Impact Monitoring for CPython

2021-12-07 Thread Victor Stinner
Interesting! Some remarks about the proposed API. On Tue, Dec 7, 2021 at 4:58 PM Mark Shannon wrote: > There is no change to the language and it adds 7 functions to the sys module, > so shouldn't be too intrusive for those of who aren't planning on > implementing any of those tools. Where are