[issue1714] ConfigParser.py do not allow leading (and trailing) space in values.

2010-07-09 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- resolution: -> duplicate status: open -> closed superseder: -> ConfigParser: accept leading whitespace on options+comments versions: +Python 3.2 -Python 2.6 ___ Python tracker __

[issue1714] ConfigParser.py do not allow leading (and trailing) space in values.

2008-05-10 Thread Jonatas Oliveira
Jonatas Oliveira <[EMAIL PROTECTED]> added the comment: Btw, i ran all tests before write "works for me" message. __ Tracker <[EMAIL PROTECTED]> __ ___ P

[issue1714] ConfigParser.py do not allow leading (and trailing) space in values.

2008-05-10 Thread Jonatas Oliveira
Jonatas Oliveira <[EMAIL PROTECTED]> added the comment: The cfgparser_doublequotes_r61014.patch works for me. I disagree wrapping a double quoted string with another double quote, it's more elegant using single quote like python's string behavior, but I don't know if is acceptable for a .ini f

[issue1714] ConfigParser.py do not allow leading (and trailing) space in values.

2008-03-25 Thread Ralf Schmitt
Changes by Ralf Schmitt <[EMAIL PROTECTED]>: -- nosy: +schmir __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscribe:

[issue1714] ConfigParser.py do not allow leading (and trailing) space in values.

2008-03-25 Thread Quentin Gallet-Gilles
Changes by Quentin Gallet-Gilles <[EMAIL PROTECTED]>: Removed file: http://bugs.python.org/file9217/cfgparser_doublequotes.patch __ Tracker <[EMAIL PROTECTED]> __ _

[issue1714] ConfigParser.py do not allow leading (and trailing) space in values.

2008-03-06 Thread Raghuram Devarakonda
Changes by Raghuram Devarakonda: -- nosy: +draghuram __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue1714] ConfigParser.py do not allow leading (and trailing) space in values.

2008-02-23 Thread Quentin Gallet-Gilles
Quentin Gallet-Gilles added the comment: Here's an updated patch, taking in account akuchling and schmir suggestions. -- keywords: +patch Added file: http://bugs.python.org/file9523/cfgparser_doublequotes_r61014.patch __ Tracker <[EMAIL PROTECTED]>

[issue1714] ConfigParser.py do not allow leading (and trailing) space in values.

2008-02-23 Thread A.M. Kuchling
Changes by A.M. Kuchling: -- assignee: -> akuchling nosy: +akuchling __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsub

[issue1714] ConfigParser.py do not allow leading (and trailing) space in values.

2008-01-19 Thread Quentin Gallet-Gilles
Quentin Gallet-Gilles added the comment: Attached patch contain the added behavior, some unit tests to validate it and updated documentation. -- nosy: +quentin.gallet-gilles Added file: http://bugs.python.org/file9217/cfgparser_doublequotes.patch __ Track

[issue1714] ConfigParser.py do not allow leading (and trailing) space in values.

2008-01-11 Thread Christian Heimes
Changes by Christian Heimes: -- components: +Library (Lib) -Extension Modules __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing lis

[issue1714] ConfigParser.py do not allow leading (and trailing) space in values.

2008-01-11 Thread Christian Heimes
Christian Heimes added the comment: Please provide a patch against 2.6 with an unit test and documentation updates. -- keywords: +easy nosy: +tiran priority: -> low versions: +Python 2.6 -Python 2.4 __ Tracker <[EMAIL PROTECTED]>

[issue1714] ConfigParser.py do not allow leading (and trailing) space in values.

2007-12-31 Thread Miroslav Suchy
New submission from Miroslav Suchy: I have some configuration params with leading space. And program (getmail4) which use ConfigParser.py. ConfigParser strip all leading (and trailing) spaces from values. This is very often the most wanted result. But if I want value with leading space I have no