Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
690e81f6
Kaydet (Commit)
690e81f6
authored
Ara 21, 2016
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge from 3.5.
üst
b0eb986e
18f018ca
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
0 deletions
+14
-0
test_xml_etree_c.py
Lib/test/test_xml_etree_c.py
+10
-0
NEWS
Misc/NEWS
+2
-0
_elementtree.c
Modules/_elementtree.c
+2
-0
No files found.
Lib/test/test_xml_etree_c.py
Dosyayı görüntüle @
690e81f6
...
...
@@ -11,6 +11,7 @@ cET_alias = import_fresh_module('xml.etree.cElementTree',
fresh
=
[
'_elementtree'
,
'xml.etree'
])
@unittest.skipUnless
(
cET
,
'requires _elementtree'
)
class
MiscTests
(
unittest
.
TestCase
):
# Issue #8651.
@support.bigmemtest
(
size
=
support
.
_2G
+
100
,
memuse
=
1
,
dry_run
=
False
)
...
...
@@ -54,6 +55,15 @@ class MiscTests(unittest.TestCase):
del
element
.
attrib
self
.
assertEqual
(
element
.
attrib
,
{
'A'
:
'B'
,
'C'
:
'D'
})
def
test_trashcan
(
self
):
# If this test fails, it will most likely die via segfault.
e
=
root
=
cET
.
Element
(
'root'
)
for
i
in
range
(
200000
):
e
=
cET
.
SubElement
(
e
,
'x'
)
del
e
del
root
support
.
gc_collect
()
@unittest.skipUnless
(
cET
,
'requires _elementtree'
)
class
TestAliasWorking
(
unittest
.
TestCase
):
...
...
Misc/NEWS
Dosyayı görüntüle @
690e81f6
...
...
@@ -40,6 +40,8 @@ Core and Builtins
Library
-------
- Issue #28871: Fixed a crash when deallocate deep ElementTree.
- Issue #19542: Fix bugs in WeakValueDictionary.setdefault() and
WeakValueDictionary.pop() when a GC collection happens in another
thread.
...
...
Modules/_elementtree.c
Dosyayı görüntüle @
690e81f6
...
...
@@ -626,6 +626,7 @@ static void
element_dealloc
(
ElementObject
*
self
)
{
PyObject_GC_UnTrack
(
self
);
Py_TRASHCAN_SAFE_BEGIN
(
self
)
if
(
self
->
weakreflist
!=
NULL
)
PyObject_ClearWeakRefs
((
PyObject
*
)
self
);
...
...
@@ -636,6 +637,7 @@ element_dealloc(ElementObject* self)
RELEASE
(
sizeof
(
ElementObject
),
"destroy element"
);
Py_TYPE
(
self
)
->
tp_free
((
PyObject
*
)
self
);
Py_TRASHCAN_SAFE_END
(
self
)
}
/* -------------------------------------------------------------------- */
...
...
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