Skip to content

Commit c27a64f

Browse files
committed
Copy docstrings to wrapped pdb methods
1 parent c85faf0 commit c27a64f

File tree

3 files changed

+40
-6
lines changed

3 files changed

+40
-6
lines changed

changelog/12946.bugfix.rst

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fixed missing help for :mod:`pdb` commands wrapped by pytest.

src/_pytest/debugging.py

+11-6
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,8 @@ def do_debug(self, arg):
159159
cls._recursive_debug -= 1
160160
return ret
161161

162+
do_debug.__doc__ = pdb_cls.do_debug.__doc__
163+
162164
def do_continue(self, arg):
163165
ret = super().do_continue(arg)
164166
if cls._recursive_debug == 0:
@@ -185,22 +187,25 @@ def do_continue(self, arg):
185187
self._continued = True
186188
return ret
187189

190+
do_continue.__doc__ = pdb_cls.do_continue.__doc__
191+
188192
do_c = do_cont = do_continue
189193

190194
def do_quit(self, arg):
191-
"""Raise Exit outcome when quit command is used in pdb.
192-
193-
This is a bit of a hack - it would be better if BdbQuit
194-
could be handled, but this would require to wrap the
195-
whole pytest run, and adjust the report etc.
196-
"""
195+
# Raise Exit outcome when quit command is used in pdb.
196+
#
197+
# This is a bit of a hack - it would be better if BdbQuit
198+
# could be handled, but this would require to wrap the
199+
# whole pytest run, and adjust the report etc.
197200
ret = super().do_quit(arg)
198201

199202
if cls._recursive_debug == 0:
200203
outcomes.exit("Quitting debugger")
201204

202205
return ret
203206

207+
do_quit.__doc__ = pdb_cls.do_quit.__doc__
208+
204209
do_q = do_quit
205210
do_exit = do_quit
206211

testing/test_debugging.py

+28
Original file line numberDiff line numberDiff line change
@@ -965,6 +965,34 @@ def test_1():
965965
child.sendeof()
966966
self.flush(child)
967967

968+
def test_pdb_wrapped_commands_docstrings(self, pytester: Pytester) -> None:
969+
p1 = pytester.makepyfile(
970+
"""
971+
def test_1():
972+
assert False
973+
"""
974+
)
975+
976+
child = pytester.spawn_pytest(f"--pdb {p1}")
977+
child.expect("Pdb")
978+
979+
# Verify no undocumented commands
980+
child.sendline("help")
981+
child.expect("Documented commands")
982+
assert "Undocumented commands" not in child.before.decode()
983+
984+
child.sendline("help continue")
985+
child.expect("Continue execution")
986+
child.expect("Pdb")
987+
988+
child.sendline("help debug")
989+
child.expect("Enter a recursive debugger")
990+
child.expect("Pdb")
991+
992+
child.sendline("c")
993+
child.sendeof()
994+
self.flush(child)
995+
968996

969997
class TestDebuggingBreakpoints:
970998
@pytest.mark.parametrize("arg", ["--pdb", ""])

0 commit comments

Comments
 (0)