[issue13079] Wrong datetime format in PEP3101

2011-09-30 Thread ojab
New submission from ojab : Example in pep3101 is "Today is: {0:a b d H:M:S Y}".format(datetime.now()) but it should be "Today is: {0:%a %b %d %H:%M:%S %Y}".format(datetime.now()) -- assignee: docs@python components: Documentation messages: 144698 nosy: docs@p

[issue12662] Allow configparser to process suplicate options

2011-07-31 Thread ojab
New submission from ojab : Allow configparser to process duplicate options, just concatenating it's values, so using file [sect1] opt1=asd; opt2=qwe opt1=fgs we will have config['sect1']['opt1'] == 'asd;fgs' -- components: Library (Lib) messages:

[issue12662] Add support for duplicate options in configparser

2011-08-05 Thread ojab
ojab added the comment: There is some [leagcy] proprietary soft-switches, which uses this config format. Personally I use [hacked] configparser to process Mera systems MVTS/SIP-HIT configs in this format, for example. -- ___ Python tracker <h

[issue12662] Add support for duplicate options in configparser

2011-08-05 Thread ojab
ojab added the comment: It may be impelmented as configparser.ConfigParser(strict=yes|no|multiline), so no existing configs will be broken. -- ___ Python tracker <http://bugs.python.org/issue12