Message282865
| 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:20 | noirbizarre | set | recipients:
+ noirbizarre, eric.araujo, dstufft |
| 2016年12月10日 19:12:20 | noirbizarre | set | messageid: <1481397140.66.0.236784364676.issue28935@psf.upfronthosting.co.za> |
| 2016年12月10日 19:12:20 | noirbizarre | link | issue28935 messages |
| 2016年12月10日 19:12:20 | noirbizarre | create |
|