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 lrowe
Recipients Claudiu.Popa, barry, fdrake, lrowe, lukasz.langa, python-dev, r.david.murray, rbcollins, serhiy.storchaka
Date 2016-01-06.23:45:31
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1452123932.03.0.794856496905.issue21159@psf.upfronthosting.co.za>
In-reply-to
Content
This change is causing a problem for boto under 3.5.1 (works on 3.5.0):

TypeError: get() got an unexpected keyword argument 'raw'
> /usr/local/Cellar/python3/3.5.1/Frameworks/Python.framework/Versions/3.5/lib/python3.5/configparser.py(406)_interpolate_some()
-> rawval = parser.get(section, option, raw=True, fallback=rest)

boto bug report: https://github.com/boto/boto/issues/3433

This is because boto is subclassing ConfigParser and its get method does not include the raw argument. A quick search shows that this also affects Kazam am circus.

Circus fixed it by adding **kwargs to the method. https://github.com/circus-tent/circus/commit/d0d2ac4fd843bb9f050a8c678956fe3682371001
History
Date User Action Args
2016-01-06 23:45:32lrowesetrecipients: + lrowe, fdrake, barry, rbcollins, r.david.murray, Claudiu.Popa, lukasz.langa, python-dev, serhiy.storchaka
2016-01-06 23:45:32lrowesetmessageid: <1452123932.03.0.794856496905.issue21159@psf.upfronthosting.co.za>
2016-01-06 23:45:32lrowelinkissue21159 messages
2016-01-06 23:45:31lrowecreate