You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for (k,v) in mydict
# do some serious processingend
Suppose an error happens for key "troublesome", and it so happens that this is the 247th key to be processed. It would be lovely to be able to set a conditional breakpoint, e.g.
for (k,v) in mydict
@cbp k=="troublesome"# do some serious processingend
The text was updated successfully, but these errors were encountered:
Suppose you have a loop,
Suppose an error happens for key
"troublesome"
, and it so happens that this is the 247th key to be processed. It would be lovely to be able to set a conditional breakpoint, e.g.The text was updated successfully, but these errors were encountered: