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 noirbizarre
Recipients dstufft, eric.araujo, noirbizarre
Date 2016-12-10.19:12:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1481397140.66.0.236784364676.issue28935@psf.upfronthosting.co.za>
In-reply-to
Content
Because of the Python 3.2 configparser renaming/refactoring, string interpolation has been enabled into distutils config parsing and so fails to read any setup.cfg with percent signs (try to perform string interpolation and fails).


To reproduce: create a project with a percent sign anywhere in the setup.cfg file and execute python setup.py egg_info.
It will pass on Python 2.x and fails on Python 3.x.

The attached patch suimply disable string interpolation in distutils config parsing.

That would be awesome to have this applied on any 3.x version (because project using tox to test against different Python versions also fails with the same issue Python 3.x and PyPI 3.x)
History
Date User Action Args
2016-12-10 19:12:20noirbizarresetrecipients: + noirbizarre, eric.araujo, dstufft
2016-12-10 19:12:20noirbizarresetmessageid: <1481397140.66.0.236784364676.issue28935@psf.upfronthosting.co.za>
2016-12-10 19:12:20noirbizarrelinkissue28935 messages
2016-12-10 19:12:20noirbizarrecreate