guile-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Python's pdb module


From: Ricardo G. Herdt
Subject: Re: Python's pdb module
Date: Fri, 30 Apr 2021 11:42:38 +0000

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 some-function-that-is-going-to-fail-miserably

Related to ,break is ,break-at-source, where you can give the line number where you want to stop.

You may also find ",trace" useful, it shows all calls to a given function.

Best,

Ricardo



reply via email to

[Prev in Thread] Current Thread [Next in Thread]