Open adamtheturtle opened 6 days ago
This is probably because pdbpp uses a .pth
file, CC @zanieb.
Interesting. Yeah it'd be good to support this, we'll probably need to dig into our virtual environment layering to fix it though.
@adamtheturtle :turtle: exploring the pdb uv fun :heart: long time no see -- Hello!
(sorry for being offtopic here -- but this is too romantic to not say anything)
pdbpp
is a replacement forpdb
which is automatically used when it is installed and apdb
breakpoint is set.Create a Python file with a breakpoint:
Run this (with
echo "c"
to exit the breakpoint) withpdbpp
:We can see
(Pdb)
on the last line, which tells us thatpdbpp
is not being used.To demonstrate what I expect, install
pdbpp
and then run the script:We can see
(Pdb++)
on the last line, which tells us thatpdbpp
is being used.