(no title)
willquack | 1 month ago
This is largely what `pdb` does already, no? Example:
```
(Pdb) list
1 something = 100
2 import pdb; pdb.set_trace()
3 -> print(f"value is: {something}")
(Pdb) something = 1234(Pdb) c
value is: 1234
```
I do like that you use `!<cmd>` to avoid the naming collision issue in pdb between commands and python code!!!
skylurk|1 month ago
For example, !interact will give you a working >>> REPL
BiteCode_dev|1 month ago