Issue 30429: bdb and pdb: Add watchpoint function (original) (raw)

Issue30429

Created on 2017-05-22 12:09 by louielu, last changed 2022-04-11 14:58 by admin.

Pull Requests
URL Status Linked Edit
PR 1756 open louielu,2017-05-23 06:03
Messages (4)
msg294140 - (view) Author: Louie Lu (louielu) * Date: 2017-05-22 12:09
Trying to add watchpoint function to bdb and pdb. It's goal is to do as gdb for three different watch: watch, rwatch and a watch. watch: when expr is written by program and value has changed, it will break rwatch: when expr is read by program, it will break awatch: when expr is read or write by program, it will break
msg294230 - (view) Author: Louie Lu (louielu) * Date: 2017-05-23 06:06
watch and awatch will detect value change and breakout, rwatch using dis module to get the file bytecode, with the lineno it can detect current line is load (read) or not.
msg296872 - (view) Author: Louie Lu (louielu) * Date: 2017-06-26 10:38
@xdegaye, would you like to review this PR? thanks.
msg297167 - (view) Author: Xavier de Gaye (xdegaye) * (Python triager) Date: 2017-06-28 09:37
See the related issue 5654.
History
Date User Action Args
2022-04-11 14:58:46 admin set github: 74614
2017-06-28 09:37:10 xdegaye set messages: +
2017-06-26 10:38:57 louielu set nosy: + xdegayemessages: +
2017-06-17 23:15:16 barry set nosy: + barry
2017-05-23 06:06:12 louielu set messages: +
2017-05-23 06:03:51 louielu set pull_requests: + <pull%5Frequest1841>
2017-05-22 15:25:24 louielu set type: enhancement
2017-05-22 15:20:38 rhettinger set title: bdb: Add watchpoint function -> bdb and pdb: Add watchpoint function
2017-05-22 12:09:45 louielu create