[issue29623] configparser.ConfigParser.read() does not accept Pathlib path as a single argument.

2018-03-06 Thread Berker Peksag
Change by Berker Peksag : -- pull_requests: -966 ___ Python tracker ___ ___

[issue29623] configparser.ConfigParser.read() does not accept Pathlib path as a single argument.

2018-03-06 Thread Berker Peksag
Change by Berker Peksag : -- pull_requests: -594 ___ Python tracker ___ ___

[issue29623] configparser.ConfigParser.read() does not accept Pathlib path as a single argument.

2018-03-05 Thread Matej Cepl
Change by Matej Cepl : -- nosy: +mcepl ___ Python tracker ___ ___ Python-bugs-list mailing

[issue29623] configparser.ConfigParser.read() does not accept Pathlib path as a single argument.

2017-03-31 Thread Donald Stufft
Changes by Donald Stufft : -- pull_requests: +966 ___ Python tracker ___ ___

[issue29623] configparser.ConfigParser.read() does not accept Pathlib path as a single argument.

2017-03-24 Thread Berker Peksag
Berker Peksag added the comment: New changeset 85b8d01c916b482dac937b93ede1e53b1db0361c by Berker Peksag (David Ellis) in branch 'master': bpo-29623: Make PathLike objects work with ConfigParser.read() (#242) https://github.com/python/cpython/commit/85b8d01c916b482dac937b93ede1e53b1db0361c

[issue29623] configparser.ConfigParser.read() does not accept Pathlib path as a single argument.

2017-03-24 Thread Berker Peksag
Berker Peksag added the comment: New changeset 21ce65aa67f0dc63002ab0a5fb21ef921cf5279e by Berker Peksag in branch '3.6': [3.6] bpo-29623: Make PathLike objects work with ConfigParser.read() (#242) (#432) https://github.com/python/cpython/commit/21ce65aa67f0dc63002ab0a5fb21ef921cf5279e

[issue29623] configparser.ConfigParser.read() does not accept Pathlib path as a single argument.

2017-03-17 Thread Larry Hastings
Changes by Larry Hastings : -- pull_requests: +594 ___ Python tracker ___ ___

[issue29623] configparser.ConfigParser.read() does not accept Pathlib path as a single argument.

2017-03-03 Thread Berker Peksag
Changes by Berker Peksag : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue29623] configparser.ConfigParser.read() does not accept Pathlib path as a single argument.

2017-03-03 Thread Berker Peksag
Changes by Berker Peksag : -- pull_requests: +358 ___ Python tracker ___ ___

[issue29623] configparser.ConfigParser.read() does not accept Pathlib path as a single argument.

2017-02-22 Thread Berker Peksag
Changes by Berker Peksag : -- stage: -> patch review ___ Python tracker ___ ___

[issue29623] configparser.ConfigParser.read() does not accept Pathlib path as a single argument.

2017-02-22 Thread David Ellis
Changes by David Ellis : -- pull_requests: +205 ___ Python tracker ___ ___

[issue29623] configparser.ConfigParser.read() does not accept Pathlib path as a single argument.

2017-02-22 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag ___ Python tracker ___ ___

[issue29623] configparser.ConfigParser.read() does not accept Pathlib path as a single argument.

2017-02-22 Thread David Ellis
New submission from David Ellis: Trying to use configparser.ConfigParser.read on a pathlib object results in a TypeError. If supplied in a list it works as expected. Repro: >>> import pathlib, configparser >>> configparser.ConfigParser().read(pathlib.Path('some.ini')) TypeError: