[issue31658] xml.sax.parse won't accept path objects

2019-04-14 Thread Stefan Behnel
Change by Stefan Behnel : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue31658] xml.sax.parse won't accept path objects

2019-04-14 Thread Stefan Behnel
Stefan Behnel added the comment: Thanks for your contribution. -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue31658] xml.sax.parse won't accept path objects

2019-04-14 Thread Stefan Behnel
Stefan Behnel added the comment: New changeset 929b70473829f04dedb8e802abcbd506926886e1 by Stefan Behnel (Mickaël Schoentgen) in branch 'master': bpo-31658: Make xml.sax.parse accepting Path objects (GH-8564) https://github.com/python/cpython/commit/929b70473829f04dedb8e802abcbd506926886e1

[issue31658] xml.sax.parse won't accept path objects

2019-04-14 Thread Stefan Behnel
Stefan Behnel added the comment: PR looks good to me. Doesn't look critical enough for a backport, though. -- nosy: +scoder versions: -Python 3.6, Python 3.7 ___ Python tracker

[issue31658] xml.sax.parse won't accept path objects

2019-01-14 Thread Mickaël Schoentgen
Change by Mickaël Schoentgen : -- versions: +Python 3.7, Python 3.8 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue31658] xml.sax.parse won't accept path objects

2018-07-30 Thread Mickaël Schoentgen
Change by Mickaël Schoentgen : -- keywords: +patch pull_requests: +8078 stage: -> patch review ___ Python tracker ___ ___

[issue31658] xml.sax.parse won't accept path objects

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

[issue31658] xml.sax.parse won't accept path objects

2017-10-01 Thread Raymond Hettinger
Change by Raymond Hettinger : -- nosy: +pitrou ___ Python tracker ___ ___

[issue31658] xml.sax.parse won't accept path objects

2017-10-01 Thread Craig Holmquist
New submission from Craig Holmquist : >>> import xml.sax >>> import pathlib [...] >>> xml.sax.parse(pathlib.Path('path/to/file'), handler) Traceback (most recent call last): File "", line 1, in File "/usr/lib/python3.6/xml/sax/__init__.py", line 33, in parse