R. David Murray <rdmur...@bitdance.com> added the comment:

Looking at the traceback and your code, configparser is calling 'get', 
expecting to call its own get method (that takes a 'raw' keyword), but instead 
is calling the get on your subclass, which doesn't take a 'raw' keyword.  

Since this appears to be example code, probably what you should do to fix this 
is remove those get methods.  Your 'default' is spelled 'fallback' in Python3.2 
configparser and does the same thing your code does.

----------
nosy: +lukasz.langa, r.david.murray
resolution:  -> invalid
status: open -> closed
type: crash -> behavior

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue14388>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to