Ethan Furman added the comment: Your interest if fixing Python is appreciated, but you need to verify that a bug actually exists first:
Python 2.7.3 (default, Sep 26 2012, 21:51:14) [GCC 4.7.2] on linux2 Type "help", "copyright", "credits" or "license" for more information. --> class RawConfigParser: ... def __init__(self, defaults=None, dict_type=dict): ... self._dict = dict_type ... self._sections = self._dict() ... self._defaults = self._dict() ... --> rcp = RawConfigParser() --> rcp._sections {} --> type(rcp._sections) <type 'dict'> --> rcp._sections['test'] = 'hello, world!' --> rcp._sections {'test': 'hello, world!'} As you can see, it is indeed callable and does result in a dictionary. ---------- resolution: -> invalid status: open -> closed _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue18001> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com