File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -150,7 +150,7 @@ def _import_pdb_cls(
150
150
__import__ (modname )
151
151
mod = sys .modules [modname ]
152
152
153
- # Handle --pdbcls=pdb:pdb.Pdb (useful e.g. with pdbpp).
153
+ # Handle --pdbcls=pdb:pdb.Pdb (useful e.g. with pdbpp or pdbp ).
154
154
parts = classname .split ("." )
155
155
pdb_cls = getattr (mod , parts [0 ])
156
156
for part in parts [1 :]:
Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ def start(self) -> None:
114
114
self ._live .start ()
115
115
except LiveError :
116
116
msg = (
117
- "pytask tried to launch a second live display which is impossible. the "
117
+ "pytask tried to launch a second live display which is impossible. The "
118
118
"issue occurs when you use pytask on the command line on a task module "
119
119
"that uses the programmatic interface of pytask at the same time. "
120
120
"Use either the command line or the programmatic interface."
Original file line number Diff line number Diff line change @@ -329,8 +329,8 @@ def task_1():
329
329
@pytest .mark .skipif (not IS_PEXPECT_INSTALLED , reason = "pexpect is not installed." )
330
330
@pytest .mark .skipif (sys .platform == "win32" , reason = "pexpect cannot spawn on Windows." )
331
331
def test_pdb_with_injected_do_debug (tmp_path ):
332
- """Simulates pdbpp, which injects Pdb into do_debug, and uses self.__class__ in
333
- do_continue."""
332
+ """Simulates pdbpp or pdbp , which injects Pdb into do_debug, and uses self.__class__
333
+ in do_continue."""
334
334
source = """
335
335
import pdb
336
336
You can’t perform that action at this time.
0 commit comments