[issue23331] Add non-interactive version of Bdb.runcall

2015-01-27 Thread Isaac Jurado
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

[issue12036] ConfigParser: items() adds the vars dictionary to the result

2011-05-09 Thread Isaac Jurado
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