New submission from Isaac Jurado:
The Bdb.runcall method shows a prompt right at the beginning of the function.
If breakpoints are defined, it is sometimes handy to skip the prompt until the
next breakpoint, if any.
This use case came up in our development environment for a Django
New submission from Isaac Jurado :
>From the following python code:
import os
from ConfigParser import ConfigParser
from pprint import pprint
c = ConfigParser()
c.read(['test.ini'])
pprint(c.items('test', raw=False, vars=os.environ))
I see the values contained in o