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 jab
Recipients jab
Date 2015-09-26.22:40:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1443307220.16.0.776749230814.issue25243@psf.upfronthosting.co.za>
In-reply-to
Content
ConfigParser.getboolean[1] has logic to convert strings like '0' and 'False' to False. This logic is generally useful in other contexts and need not be coupled to ConfigParser. Would you consider accepting a patch that factored this string-to-boolean logic out of ConfigParser into a standalone function, and changed ConfigParser.getboolean internally to call that?

Thanks for your consideration.

[1] https://docs.python.org/3/library/configparser.html#configparser.ConfigParser.getboolean
History
Date User Action Args
2015-09-26 22:40:20jabsetrecipients: + jab
2015-09-26 22:40:20jabsetmessageid: <1443307220.16.0.776749230814.issue25243@psf.upfronthosting.co.za>
2015-09-26 22:40:20jablinkissue25243 messages
2015-09-26 22:40:19jabcreate