<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
</head>
<body bgcolor="#ffffff" text="#000000">
Hi, I need to track where a certain condition is met in a program.
Checking on pdb docs I find the break statement : <br>
<br>
b(reak) [[<em>filename</em>:]<em>lineno</em> | <em>function</em>[, <em>condition</em>]]<br>
<br>
But it requires me to name a line/function where my condition is
tested. Now there are far too many places in a project where this
condition may be set to true, and I might overlook some (and it would
take an awful lot of time to identify them all). Is there a statement
that allows me to stop execution when a condition is met regardless of
where this happens? <br>
<br>
Thx.<br>
<br>
Ricardo.<br>
<br>
</body>
</html>