#! /usr/bin/env python3 import pdb def foo(message): print(message) pdb.set_trace() foo('first call') foo('second call')