[issue24131] [configparser] Add section/option delimiter to ExtendedInterpolation

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

[issue24131] [configparser] Add section/option delimiter to ExtendedInterpolation

2015-05-05 Thread Guilherme
New submission from Guilherme: Using configparser.ExtendedInterpolation one can interpolate ${section:option}. It would be nice to have a parameter on ExtendedInterpolation __init__ to change the delimiter, thus one can use ${section/option} instead (using '/' instead of ':', for example). --