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 eli.collins
Recipients alexis, eli.collins, eric.araujo, tarek
Date 2011-06-28.00:12:46
SpamBayes Score 1.927488e-09
Marked as misclassified No
Message-id <1309219966.78.0.835295932694.issue12424@psf.upfronthosting.co.za>
In-reply-to
Content
The _pop_values() function in packaging.config uses "--" as the environment marker separator when parsing extension sections. This doesn't match PEP 345, or how the metadata section is currently parsed, both of which use ";" instead. Also, "--" is frequently found in compiler option strings, which will probably cause conflicts in the future. 

The attached patch changes _pop_values() and related unit tests to use ";" as the separator, as well as tries to clarify some of _pop_values()'s internal comments.
History
Date User Action Args
2011-06-28 00:12:46eli.collinssetrecipients: + eli.collins, tarek, eric.araujo, alexis
2011-06-28 00:12:46eli.collinssetmessageid: <1309219966.78.0.835295932694.issue12424@psf.upfronthosting.co.za>
2011-06-28 00:12:46eli.collinslinkissue12424 messages
2011-06-28 00:12:46eli.collinscreate