mirror of https://github.com/python/cpython
GH-103124: Multiline statement support for pdb (GH-103125)
This commit is contained in:
parent
a4056c8f9c
commit
25a64fd28a
26
Lib/pdb.py
26
Lib/pdb.py
|
@ -76,6 +76,7 @@ import bdb
|
||||||
import dis
|
import dis
|
||||||
import code
|
import code
|
||||||
import glob
|
import glob
|
||||||
|
import codeop
|
||||||
import pprint
|
import pprint
|
||||||
import signal
|
import signal
|
||||||
import inspect
|
import inspect
|
||||||
|
@ -444,7 +445,30 @@ class Pdb(bdb.Bdb, cmd.Cmd):
|
||||||
locals = self.curframe_locals
|
locals = self.curframe_locals
|
||||||
globals = self.curframe.f_globals
|
globals = self.curframe.f_globals
|
||||||
try:
|
try:
|
||||||
code = compile(line + '\n', '<stdin>', 'single')
|
if (code := codeop.compile_command(line + '\n', '<stdin>', 'single')) is None:
|
||||||
|
# Multi-line mode
|
||||||
|
buffer = line
|
||||||
|
continue_prompt = "... "
|
||||||
|
while (code := codeop.compile_command(buffer, '<stdin>', 'single')) is None:
|
||||||
|
if self.use_rawinput:
|
||||||
|
try:
|
||||||
|
line = input(continue_prompt)
|
||||||
|
except (EOFError, KeyboardInterrupt):
|
||||||
|
self.lastcmd = ""
|
||||||
|
print('\n')
|
||||||
|
return
|
||||||
|
else:
|
||||||
|
self.stdout.write(continue_prompt)
|
||||||
|
self.stdout.flush()
|
||||||
|
line = self.stdin.readline()
|
||||||
|
if not len(line):
|
||||||
|
self.lastcmd = ""
|
||||||
|
self.stdout.write('\n')
|
||||||
|
self.stdout.flush()
|
||||||
|
return
|
||||||
|
else:
|
||||||
|
line = line.rstrip('\r\n')
|
||||||
|
buffer += '\n' + line
|
||||||
save_stdout = sys.stdout
|
save_stdout = sys.stdout
|
||||||
save_stdin = sys.stdin
|
save_stdin = sys.stdin
|
||||||
save_displayhook = sys.displayhook
|
save_displayhook = sys.displayhook
|
||||||
|
|
|
@ -389,7 +389,7 @@ def test_pdb_breakpoints_preserved_across_interactive_sessions():
|
||||||
1 breakpoint keep yes at ...test_pdb.py:...
|
1 breakpoint keep yes at ...test_pdb.py:...
|
||||||
2 breakpoint keep yes at ...test_pdb.py:...
|
2 breakpoint keep yes at ...test_pdb.py:...
|
||||||
(Pdb) break pdb.find_function
|
(Pdb) break pdb.find_function
|
||||||
Breakpoint 3 at ...pdb.py:97
|
Breakpoint 3 at ...pdb.py:...
|
||||||
(Pdb) break
|
(Pdb) break
|
||||||
Num Type Disp Enb Where
|
Num Type Disp Enb Where
|
||||||
1 breakpoint keep yes at ...test_pdb.py:...
|
1 breakpoint keep yes at ...test_pdb.py:...
|
||||||
|
@ -1589,6 +1589,32 @@ def test_pdb_next_command_subiterator():
|
||||||
(Pdb) continue
|
(Pdb) continue
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
def test_pdb_multiline_statement():
|
||||||
|
"""Test for multiline statement
|
||||||
|
|
||||||
|
>>> def test_function():
|
||||||
|
... import pdb; pdb.Pdb(nosigint=True, readrc=False).set_trace()
|
||||||
|
... pass
|
||||||
|
|
||||||
|
>>> with PdbTestInput([ # doctest: +NORMALIZE_WHITESPACE
|
||||||
|
... 'def f(x):',
|
||||||
|
... ' return x * 2',
|
||||||
|
... '',
|
||||||
|
... 'f(2)',
|
||||||
|
... 'c'
|
||||||
|
... ]):
|
||||||
|
... test_function()
|
||||||
|
> <doctest test.test_pdb.test_pdb_multiline_statement[0]>(3)test_function()
|
||||||
|
-> pass
|
||||||
|
(Pdb) def f(x):
|
||||||
|
... return x * 2
|
||||||
|
...
|
||||||
|
(Pdb) f(2)
|
||||||
|
4
|
||||||
|
(Pdb) c
|
||||||
|
"""
|
||||||
|
|
||||||
|
|
||||||
def test_pdb_issue_20766():
|
def test_pdb_issue_20766():
|
||||||
"""Test for reference leaks when the SIGINT handler is set.
|
"""Test for reference leaks when the SIGINT handler is set.
|
||||||
|
|
||||||
|
@ -2362,7 +2388,7 @@ def bœr():
|
||||||
|
|
||||||
def test_errors_in_command(self):
|
def test_errors_in_command(self):
|
||||||
commands = "\n".join([
|
commands = "\n".join([
|
||||||
'print(',
|
'print(]',
|
||||||
'debug print(',
|
'debug print(',
|
||||||
'debug doesnotexist',
|
'debug doesnotexist',
|
||||||
'c',
|
'c',
|
||||||
|
@ -2371,7 +2397,8 @@ def bœr():
|
||||||
|
|
||||||
self.assertEqual(stdout.splitlines()[1:], [
|
self.assertEqual(stdout.splitlines()[1:], [
|
||||||
'-> pass',
|
'-> pass',
|
||||||
'(Pdb) *** SyntaxError: \'(\' was never closed',
|
"(Pdb) *** SyntaxError: closing parenthesis ']' does not match opening "
|
||||||
|
"parenthesis '('",
|
||||||
|
|
||||||
'(Pdb) ENTERING RECURSIVE DEBUGGER',
|
'(Pdb) ENTERING RECURSIVE DEBUGGER',
|
||||||
'*** SyntaxError: \'(\' was never closed',
|
'*** SyntaxError: \'(\' was never closed',
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
Added multiline statement support for :mod:`pdb`
|
Loading…
Reference in New Issue