pdbcls ipython example with tab completion

This commit is contained in:
mbyt 2016-08-29 21:15:12 +02:00
parent e75078eae2
commit 8593bb12ee
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ def pytest_addoption(parser):
group._addoption(
'--pdbcls', dest="usepdb_cls", metavar="modulename:classname",
help="start a custom interactive Python debugger on errors. "
"For example: --pdbcls=IPython.core.debugger:Pdb")
"For example: --pdbcls=IPython.terminal.debugger:TerminalPdb")
def pytest_namespace():
return {'set_trace': pytestPDB().set_trace}