summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2019-11-25 15:36:25 (GMT)
committerGitHub <noreply@github.com>2019-11-25 15:36:25 (GMT)
commitc6a7bdb356835c9d7513b1ea6846683d446fe6c3 (patch)
tree3e98d7da17cbffbfc4ffd97392c5869caccb5185 /Misc/NEWS.d
parentded8888fbc33011dd39b7b1c86a5adfacc4943f3 (diff)
downloadcpython-c6a7bdb356835c9d7513b1ea6846683d446fe6c3.zip
cpython-c6a7bdb356835c9d7513b1ea6846683d446fe6c3.tar.gz
cpython-c6a7bdb356835c9d7513b1ea6846683d446fe6c3.tar.bz2
bpo-20928: support base-URL and recursive includes in etree.ElementInclude (#5723)
* bpo-20928: bring elementtree's XInclude support en-par with the implementation in lxml by adding support for recursive includes and a base-URL. * bpo-20928: Support xincluding the same file multiple times, just not recursively. * bpo-20928: Add 'max_depth' parameter to xinclude that limits the maximum recursion depth to 6 by default. * Add news entry for updated ElementInclude support
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Library/2018-03-30-16-18-12.bpo-20928.ieXu6I.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-03-30-16-18-12.bpo-20928.ieXu6I.rst b/Misc/NEWS.d/next/Library/2018-03-30-16-18-12.bpo-20928.ieXu6I.rst
new file mode 100644
index 0000000..2585400
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-03-30-16-18-12.bpo-20928.ieXu6I.rst
@@ -0,0 +1 @@
+ElementTree supports recursive XInclude processing. Patch by Stefan Behnel.