This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author r.david.murray
Recipients lukasz.langa, r.david.murray, solj
Date 2012-03-22.13:56:25
SpamBayes Score 0.004890046
Marked as misclassified No
Message-id <1332424586.27.0.0827220179584.issue14388@psf.upfronthosting.co.za>
In-reply-to
Content
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.
History
Date User Action Args
2012-03-22 13:56:26r.david.murraysetrecipients: + r.david.murray, lukasz.langa, solj
2012-03-22 13:56:26r.david.murraysetmessageid: <1332424586.27.0.0827220179584.issue14388@psf.upfronthosting.co.za>
2012-03-22 13:56:25r.david.murraylinkissue14388 messages
2012-03-22 13:56:25r.david.murraycreate