[issue25854] rest in _interpolate_some is a list not str

2015-12-12 Thread Raymond Hettinger
Raymond Hettinger added the comment: The proposed patch (switching from a while-loop to a for-loop) doesn't make sense with respect to the manipulations that are done in the body of the loop. It breaks Lib/test/test_configparser.py. Closing this one because there doesn't appear to be any usef

[issue25854] rest in _interpolate_some is a list not str

2015-12-12 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- assignee: -> rhettinger nosy: +rhettinger ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue25854] rest in _interpolate_some is a list not str

2015-12-12 Thread SilentGhost
SilentGhost added the comment: I'm not sure what problem exactly you're trying to report / solve here. I'd suggest you add an explanation of an issue you're experiencing. In any case your current change seem to be breaking too many things. -- components: +Library (Lib) -Interpreter Cor

[issue25854] rest in _interpolate_some is a list not str

2015-12-12 Thread Andrei Tumbar
New submission from Andrei Tumbar: Create a list called _rest from rest then will del rest instead of while rest: for rest in _rest -- components: Interpreter Core files: configparser.py messages: 256307 nosy: Andrei Tumbar priority: normal severity: normal status: open title: rest in _i