[issue41379] Configparser is not reading Indended Sections as Mentioned in Docs

2021-08-19 Thread Roundup Robot
Change by Roundup Robot : -- nosy: +python-dev nosy_count: 2.0 -> 3.0 pull_requests: +26294 pull_request: https://github.com/python/cpython/pull/27830 ___ Python tracker ___ __

[issue41379] Configparser is not reading Indended Sections as Mentioned in Docs

2020-07-24 Thread SilentGhost
SilentGhost added the comment: In your example you're instantiating ConfigParser with default parameters, meaning empty_lines_in_values equals True, which leads to key "a" consuming everything on the following indented lines. If you're were to specify False as the value for empty_lines_in_va

[issue41379] Configparser is not reading Indended Sections as Mentioned in Docs

2020-07-23 Thread Vignesh Rajendran
Change by Vignesh Rajendran : -- components: +Library (Lib) ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue41379] Configparser is not reading Indended Sections as Mentioned in Docs

2020-07-23 Thread Vignesh Rajendran
New submission from Vignesh Rajendran : https://github.com/jaraco/configparser/issues/55 Please check the Bug is raised also in Github, Sections can be intended is specified in the documentation. When I read the indented section, its throwing section not found an error in python 3.8 as per