Re: Python's pdb module

2021-04-30 Thread Tim Meehan
Thanks for the ideas folks! > On Apr 30, 2021, at 08:24, Matt Wette wrote: > >  >> On 4/29/21 8:26 PM, Tim Meehan wrote: >> Is there something in Guile that is similar to Python's "pdb" module? >> For instance, sometimes I find it helpful to pause right before something >> bad happens with: >>

Re: Python's pdb module

2021-04-30 Thread Matt Wette
On 4/29/21 8:26 PM, Tim Meehan wrote: Is there something in Guile that is similar to Python's "pdb" module? For instance, sometimes I find it helpful to pause right before something bad happens with: #!/usr/bin/env python3 import pdb; pdb.set_trace() some_function_that_is_going_to_fail_miserab

Re: Python's pdb module

2021-04-30 Thread Ricardo G. Herdt
Hi Tim, Am 30.04.2021 05:26 schrieb Tim Meehan: Is there something in Guile that is similar to Python's "pdb" module? For instance, sometimes I find it helpful to pause right before something bad happens with: you can use the debugging features of the REPL. See: ,help debug Example: ,break