[issue21329] configparser can't parse MySQL style config

2014-09-27 Thread Martin Panter
Martin Panter added the comment: See Issue 12662 for a related earlier proposal. (Although the multimap proposal here sounds better than concatenating the values as proposed there.) -- nosy: +vadmium ___ Python tracker

[issue21329] configparser can't parse MySQL style config

2014-05-13 Thread R. David Murray
R. David Murray added the comment: The data structure you are asking for bears a resemblance to the data structure used by the email package to record message headers. Email uses a list with a dict-like API cobbled together on top. The difference with your suggestion is that email also needs

[issue21329] configparser can't parse MySQL style config

2014-04-22 Thread Ned Deily
Changes by Ned Deily : -- nosy: +lukasz.langa ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue21329] configparser can't parse MySQL style config

2014-04-22 Thread Daniël van Eeden
New submission from Daniël van Eeden: With Python 2.7 the ConfigParser was enriched with the allow_no_value option which resulted in a much more usable configparser for MySQL configs. It can now parse configs like this: [mysqld] log_bin innodb_file_per_table innodb_io_capacity=800 However it c