Re: [Cython] Debugging Cython programs with PDB

2018-12-31 Thread E. Madison Bray
On Mon, Dec 31, 2018 at 10:55 AM Prakhar Goel wrote: > > I wanted to test the waters on this idea. > > The idea is to allow debugging Cython programs with PDB. This relies > on making call-backs to trigger the sys.trace functionality every now > and then. It is very similar to how profiling is han

Re: [Cython] Debugging Cython programs with PDB

2018-12-31 Thread Stefan Behnel
Hi! Nice idea. Prakhar Goel schrieb am 29.12.18 um 15:02: > I wanted to test the waters on this idea. > > The idea is to allow debugging Cython programs with PDB. This relies > on making call-backs to trigger the sys.trace functionality every now > and then. It is very similar to how profiling i

[Cython] Debugging Cython programs with PDB

2018-12-31 Thread Prakhar Goel
I wanted to test the waters on this idea. The idea is to allow debugging Cython programs with PDB. This relies on making call-backs to trigger the sys.trace functionality every now and then. It is very similar to how profiling is handled so I figured that a bunch of the infra for this is already p