0

The program stops properly where expected, but I don't get the pdb prompt. Hitting "c" continues the program as expected.

I've checked stdout and it's fine.

Finch_Powers
  • 2,938
  • 1
  • 24
  • 34

1 Answers1

2

I was launching the program with something like

python program.py 2>&1 | tee out.log

Piping the output to tee was causing the issue.

Finch_Powers
  • 2,938
  • 1
  • 24
  • 34