[issue35885] configparser: indentation

2020-06-08 Thread Łukasz Langa
Łukasz Langa added the comment: Thanks for your contribution Ido Michael but I'm also -1 on the feature. .ini is an underspecified format and it's supposed to be interoperable between applications. Indenting keys sounds like a compatibility challenge. -- resolution: -> wont fix stage

[issue35885] configparser: indentation

2020-06-08 Thread Tal Einat
Tal Einat added the comment: I'm -1 on making this change. Frankly, I think there are many better modern alternatives to ConfigParser, and I think we should avoid complicating it any further. -- nosy: +taleinat ___ Python tracker

[issue35885] configparser: indentation

2020-03-30 Thread Ido Michael
Ido Michael added the comment: ping -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

[issue35885] configparser: indentation

2020-03-22 Thread Ido Michael
Ido Michael added the comment: @SilentGhost Added documentation to the module and a test for a give space indent in the module test. -- ___ Python tracker ___ ___

[issue35885] configparser: indentation

2020-02-23 Thread SilentGhost
SilentGhost added the comment: Your PRs are missing documentation and tests. -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue35885] configparser: indentation

2020-02-23 Thread Ido Michael
Ido Michael added the comment: New PR: GH-18623 -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue35885] configparser: indentation

2020-02-23 Thread Ido Michael
Change by Ido Michael : -- pull_requests: +17988 pull_request: https://github.com/python/cpython/pull/18623 ___ Python tracker ___ _

[issue35885] configparser: indentation

2020-02-23 Thread Ido Michael
Change by Ido Michael : -- pull_requests: +17986 pull_request: https://github.com/python/cpython/pull/18621 ___ Python tracker ___ _

[issue35885] configparser: indentation

2020-02-23 Thread Ido Michael
Change by Ido Michael : -- pull_requests: +17985 pull_request: https://github.com/python/cpython/pull/18620 ___ Python tracker ___ _

[issue35885] configparser: indentation

2020-02-16 Thread Ido Michael
Ido Michael added the comment: Created PR GH-18522 -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:

[issue35885] configparser: indentation

2020-02-16 Thread Ido Michael
Change by Ido Michael : -- keywords: +patch pull_requests: +17899 stage: -> patch review pull_request: https://github.com/python/cpython/pull/18522 ___ Python tracker ___

[issue35885] configparser: indentation

2020-02-02 Thread SilentGhost
SilentGhost added the comment: I would suggest adding indent parameter to the write method, it would default to an empty string and could be used directly in the formatting operation. -- nosy: +SilentGhost ___ Python tracker

[issue35885] configparser: indentation

2020-02-02 Thread Ido Michael
Ido Michael added the comment: Can I take this? What needs to be done? adding an indent flag and if it's passed indent the keys? -- nosy: +Ido Michael ___ Python tracker ___ _

[issue35885] configparser: indentation

2019-02-19 Thread Emmanuel Arias
Emmanuel Arias added the comment: > I already have some example code for it Do you have a patch? -- nosy: +eamanu ___ Python tracker ___ _

[issue35885] configparser: indentation

2019-02-02 Thread SilentGhost
Change by SilentGhost : -- nosy: +lukasz.langa ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue35885] configparser: indentation

2019-02-01 Thread mrs.red
New submission from mrs.red : The configparser module does not have an option for indentation. I would like to indent the keys by tabs. Maybe we could implement an option for that? I already have some example code for it. -- components: Library (Lib) messages: 334729 nosy: mrs.red prio