This issue tracker has been migrated to GitHub ,
and is currently read-only.
For more information,
see the GitHub FAQs in the Python's Developer Guide.
Created on 2012年05月12日 10:07 by xdegaye, last changed 2022年04月11日 14:57 by admin.
| Files | ||||
|---|---|---|---|---|
| File name | Uploaded | Description | Edit | |
| pdb_default.patch | xdegaye, 2012年05月12日 10:07 | review | ||
| Messages (3) | |||
|---|---|---|---|
| msg160467 - (view) | Author: Xavier de Gaye (xdegaye) * (Python triager) | Date: 2012年05月12日 10:07 | |
When a breakpoint is set anywhere (in which case the global system's trace function is set), interrupting the debuggee causes Pdb to stop into its own code. See the following pdb session run with python on the current head of the default branch from the repo. === main.py ================================= import time def bar(): i = 1 while i: time.sleep(.100) bar() ================================================= $ python -m pdb main.py > /path_to/main.py(1)<module>() -> import time (Pdb) import sys; print(sys.version) 3.3.0a3+ (default:4e9680570be8, May 11 2012, 12:09:15) [GCC 4.3.2] (Pdb) break bar Breakpoint 1 at /path_to/main.py:2 (Pdb) continue > /path_to/main.py(3)bar() -> i = 1 (Pdb) continue ^C Program interrupted. (Use 'cont' to resume). --Call-- > /home/xavier/src/cpython/cpython-hg-default/Lib/bdb.py(212)set_trace() -> def set_trace(self, frame=None): (Pdb) where /home/xavier/src/cpython/cpython-hg-default/Lib/bdb.py(405)run() -> exec(cmd, globals, locals) <string>(1)<module>() /path_to/main.py(7)<module>() -> bar() /path_to/main.py(5)bar() -> time.sleep(.100) /home/xavier/src/cpython/cpython-hg-default/Lib/pdb.py(196)sigint_handler() -> self.set_trace(frame) > /home/xavier/src/cpython/cpython-hg-default/Lib/bdb.py(212)set_trace() -> def set_trace(self, frame=None): (Pdb) quit ================================================= The attached patch fixes the problem and includes a test case. This fix is the same as the one proposed at issue 14743 to fix another problem, except that the set_step call is moved at the end of the sigint_handler method for the sake of robustness. |
|||
| msg222267 - (view) | Author: Mark Lawrence (BreamoreBoy) * | Date: 2014年07月04日 07:35 | |
A quick glance tells me the patch is okay, apart from the name "test_issue_XXX", so can we have a formal patch review please. See also #14743. |
|||
| msg340536 - (view) | Author: daniel hahler (blueyed) * | Date: 2019年04月19日 10:51 | |
I think this issue itself might be fixed already / changed since 3.5. I've came up with something similar in this area though, which is only triggered when using Ctrl-C while pdb is waiting for the next statement: https://github.com/python/cpython/pull/12880 |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:57:30 | admin | set | github: 58993 |
| 2019年04月19日 10:51:51 | blueyed | set | nosy:
+ blueyed messages: + msg340536 |
| 2019年03月16日 00:13:36 | BreamoreBoy | set | nosy:
- BreamoreBoy |
| 2014年07月04日 07:35:49 | BreamoreBoy | set | nosy:
+ BreamoreBoy messages: + msg222267 versions: + Python 3.4, Python 3.5, - Python 3.2 |
| 2012年05月18日 17:47:23 | terry.reedy | set | nosy:
+ georg.brandl |
| 2012年05月12日 10:07:36 | xdegaye | create | |