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 brian.curtin
Recipients brian.curtin, eric.araujo, lukasz.langa, ojab
Date 2011-08-05.19:11:29
SpamBayes Score 0.0015458452
Marked as misclassified No
Message-id <1312571490.73.0.398105379017.issue12662@psf.upfronthosting.co.za>
In-reply-to
Content
This would break existing config files, including some of my own. 

It would also require that you have some end delimiter on every item in order to handle the event that someone duplicates options, otherwise the following would likely behave badly in your application

[sect]
opt=first
opt=second

This would give you "firstsecond" that you'd somehow need to parse. Sometimes if I'm testing out options, like I want to check how "second" works, I'll quickly just do it as above. With a change like this, I couldn't do that, I'd be forced to comment out the first line, or add a delimiter and split on it.
History
Date User Action Args
2011-08-05 19:11:30brian.curtinsetrecipients: + brian.curtin, eric.araujo, lukasz.langa, ojab
2011-08-05 19:11:30brian.curtinsetmessageid: <1312571490.73.0.398105379017.issue12662@psf.upfronthosting.co.za>
2011-08-05 19:11:30brian.curtinlinkissue12662 messages
2011-08-05 19:11:30brian.curtincreate