Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
9062c261
Commit
9062c261
authored
Jun 12, 2016
by
Serhiy Storchaka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #25455: Fixed a crash in repr of ElementTree.Element with recursive tag.
parent
3c317e76
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
25 additions
and
4 deletions
+25
-4
Lib/test/test_xml_etree.py
Lib/test/test_xml_etree.py
+7
-1
Misc/NEWS
Misc/NEWS
+2
-0
Modules/_elementtree.c
Modules/_elementtree.c
+16
-3
No files found.
Lib/test/test_xml_etree.py
View file @
9062c261
...
...
@@ -18,7 +18,7 @@ import weakref
from
itertools
import
product
from
test
import
support
from
test.support
import
TESTFN
,
findfile
,
import_fresh_module
,
gc_collect
from
test.support
import
TESTFN
,
findfile
,
import_fresh_module
,
gc_collect
,
swap_attr
# pyET is the pure-Python implementation.
#
...
...
@@ -1860,6 +1860,12 @@ class BadElementTest(ElementTestCase, unittest.TestCase):
e
.
extend
([
ET
.
Element
(
'bar'
)])
self
.
assertRaises
(
ValueError
,
e
.
remove
,
X
(
'baz'
))
def
test_recursive_repr
(
self
):
# Issue #25455
e
=
ET
.
Element
(
'foo'
)
with
swap_attr
(
e
,
'tag'
,
e
):
with
self
.
assertRaises
(
RuntimeError
):
repr
(
e
)
# Should not crash
class
MutatingElementPath
(
str
):
def
__new__
(
cls
,
elem
,
*
args
):
...
...
Misc/NEWS
View file @
9062c261
...
...
@@ -143,6 +143,8 @@ Core and Builtins
Library
-------
- Issue #25455: Fixed a crash in repr of ElementTree.Element with recursive tag.
- Issue #26556: Update expat to 2.1.1, fixes CVE-2015-1283.
- Fix TLS stripping vulnerability in smptlib, CVE-2016-0772. Reported by Team
...
...
Modules/_elementtree.c
View file @
9062c261
...
...
@@ -1582,10 +1582,23 @@ _elementtree_Element_remove_impl(ElementObject *self, PyObject *subelement)
static
PyObject
*
element_repr
(
ElementObject
*
self
)
{
i
f
(
self
->
tag
)
return
PyUnicode_FromFormat
(
"<Element %R at %p>"
,
self
->
tag
,
self
);
else
i
nt
status
;
if
(
self
->
tag
==
NULL
)
return
PyUnicode_FromFormat
(
"<Element at %p>"
,
self
);
status
=
Py_ReprEnter
((
PyObject
*
)
self
);
if
(
status
==
0
)
{
PyObject
*
res
;
res
=
PyUnicode_FromFormat
(
"<Element %R at %p>"
,
self
->
tag
,
self
);
Py_ReprLeave
((
PyObject
*
)
self
);
return
res
;
}
if
(
status
>
0
)
PyErr_Format
(
PyExc_RuntimeError
,
"reentrant call inside %s.__repr__"
,
Py_TYPE
(
self
)
->
tp_name
);
return
NULL
;
}
/*[clinic input]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment