@@ -52,6 +52,16 @@ def reset(self):
52
52
def interaction (self , * args ):
53
53
called .append ("interaction" )
54
54
55
+ # Methods which we copy the docstring over.
56
+ def do_debug (self , * args ):
57
+ pass
58
+
59
+ def do_continue (self , * args ):
60
+ pass
61
+
62
+ def do_quit (self , * args ):
63
+ pass
64
+
55
65
_pytest ._CustomPdb = _CustomPdb # type: ignore
56
66
return called
57
67
@@ -75,6 +85,16 @@ def set_trace(self, frame):
75
85
print ("**CustomDebugger**" )
76
86
called .append ("set_trace" )
77
87
88
+ # Methods which we copy the docstring over.
89
+ def do_debug (self , * args ):
90
+ pass
91
+
92
+ def do_continue (self , * args ):
93
+ pass
94
+
95
+ def do_quit (self , * args ):
96
+ pass
97
+
78
98
_pytest ._CustomDebugger = _CustomDebugger # type: ignore
79
99
yield called
80
100
del _pytest ._CustomDebugger # type: ignore
@@ -965,6 +985,34 @@ def test_1():
965
985
child .sendeof ()
966
986
self .flush (child )
967
987
988
+ def test_pdb_wrapped_commands_docstrings (self , pytester : Pytester ) -> None :
989
+ p1 = pytester .makepyfile (
990
+ """
991
+ def test_1():
992
+ assert False
993
+ """
994
+ )
995
+
996
+ child = pytester .spawn_pytest (f"--pdb { p1 } " )
997
+ child .expect ("Pdb" )
998
+
999
+ # Verify no undocumented commands
1000
+ child .sendline ("help" )
1001
+ child .expect ("Documented commands" )
1002
+ assert "Undocumented commands" not in child .before .decode ()
1003
+
1004
+ child .sendline ("help continue" )
1005
+ child .expect ("Continue execution" )
1006
+ child .expect ("Pdb" )
1007
+
1008
+ child .sendline ("help debug" )
1009
+ child .expect ("Enter a recursive debugger" )
1010
+ child .expect ("Pdb" )
1011
+
1012
+ child .sendline ("c" )
1013
+ child .sendeof ()
1014
+ self .flush (child )
1015
+
968
1016
969
1017
class TestDebuggingBreakpoints :
970
1018
@pytest .mark .parametrize ("arg" , ["--pdb" , "" ])
@@ -1288,6 +1336,16 @@ def set_trace(self, *args):
1288
1336
1289
1337
def runcall(self, *args, **kwds):
1290
1338
print("runcall_called", args, kwds)
1339
+
1340
+ # Methods which we copy the docstring over.
1341
+ def do_debug(self, *args):
1342
+ pass
1343
+
1344
+ def do_continue(self, *args):
1345
+ pass
1346
+
1347
+ def do_quit(self, *args):
1348
+ pass
1291
1349
""" ,
1292
1350
)
1293
1351
result = pytester .runpytest (
@@ -1354,6 +1412,16 @@ def __init__(self, *args, **kwargs):
1354
1412
1355
1413
def set_trace(self, *args):
1356
1414
print("set_trace_called", args)
1415
+
1416
+ # Methods which we copy the docstring over.
1417
+ def do_debug(self, *args):
1418
+ pass
1419
+
1420
+ def do_continue(self, *args):
1421
+ pass
1422
+
1423
+ def do_quit(self, *args):
1424
+ pass
1357
1425
""" ,
1358
1426
)
1359
1427
result = pytester .runpytest (str (p1 ), "--pdbcls=mypdb:MyPdb" , syspathinsert = True )
0 commit comments