summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMickaël Schoentgen <contact@tiger-222.fr>2019-04-14 09:16:54 (GMT)
committerStefan Behnel <stefan_ml@behnel.de>2019-04-14 09:16:54 (GMT)
commit929b70473829f04dedb8e802abcbd506926886e1 (patch)
tree6c0e66ff8e84eedf21dc36cfe87fb8967a09e6d5 /Misc
parente9927e1820caea01e576141d9a623ea394d43dad (diff)
downloadcpython-929b70473829f04dedb8e802abcbd506926886e1.zip
cpython-929b70473829f04dedb8e802abcbd506926886e1.tar.gz
cpython-929b70473829f04dedb8e802abcbd506926886e1.tar.bz2
bpo-31658: Make xml.sax.parse accepting Path objects (GH-8564)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2018-07-30-12-00-15.bpo-31658._bx7a_.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-07-30-12-00-15.bpo-31658._bx7a_.rst b/Misc/NEWS.d/next/Library/2018-07-30-12-00-15.bpo-31658._bx7a_.rst
new file mode 100644
index 0000000..8b35060
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-07-30-12-00-15.bpo-31658._bx7a_.rst
@@ -0,0 +1,2 @@
+:func:`xml.sax.parse` now supports :term:`path-like <path-like object>`.
+Patch by Mickaël Schoentgen.