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
e36e8be2
Kaydet (Commit)
e36e8be2
authored
Ara 19, 2013
tarafından
Zachary Ware
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #19683: Removed empty tests from test_minidom. Patch by Ajitesh Gupta.
üst
c8cc42ed
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
65 deletions
+3
-65
test_minidom.py
Lib/test/test_minidom.py
+0
-65
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/test/test_minidom.py
Dosyayı görüntüle @
e36e8be2
...
...
@@ -360,15 +360,6 @@ class MinidomTest(unittest.TestCase):
and
el
.
getAttribute
(
"spam2"
)
==
"bam2"
)
dom
.
unlink
()
def
testGetAttrList
(
self
):
pass
def
testGetAttrValues
(
self
):
pass
def
testGetAttrLength
(
self
):
pass
def
testGetAttribute
(
self
):
dom
=
Document
()
child
=
dom
.
appendChild
(
...
...
@@ -389,8 +380,6 @@ class MinidomTest(unittest.TestCase):
self
.
assertEqual
(
child2
.
getAttributeNS
(
"http://www.python.org"
,
"missing"
),
''
)
def
testGetAttributeNode
(
self
):
pass
def
testGetElementsByTagNameNS
(
self
):
d
=
"""<foo xmlns:minidom='http://pyxml.sf.net/minidom'>
<minidom:myelem/>
...
...
@@ -461,8 +450,6 @@ class MinidomTest(unittest.TestCase):
self
.
confirm
(
str
(
node
)
==
repr
(
node
))
dom
.
unlink
()
def
testTextNodeRepr
(
self
):
pass
def
testWriteXML
(
self
):
str
=
'<?xml version="1.0" ?><a b="c"/>'
dom
=
parseString
(
str
)
...
...
@@ -526,14 +513,6 @@ class MinidomTest(unittest.TestCase):
and
pi
.
localName
is
None
and
pi
.
namespaceURI
==
xml
.
dom
.
EMPTY_NAMESPACE
)
def
testProcessingInstructionRepr
(
self
):
pass
def
testTextRepr
(
self
):
pass
def
testWriteText
(
self
):
pass
def
testDocumentElement
(
self
):
pass
def
testTooManyDocumentElements
(
self
):
doc
=
parseString
(
"<doc/>"
)
elem
=
doc
.
createElement
(
"extra"
)
...
...
@@ -542,26 +521,6 @@ class MinidomTest(unittest.TestCase):
elem
.
unlink
()
doc
.
unlink
()
def
testCreateElementNS
(
self
):
pass
def
testCreateAttributeNS
(
self
):
pass
def
testParse
(
self
):
pass
def
testParseString
(
self
):
pass
def
testComment
(
self
):
pass
def
testAttrListItem
(
self
):
pass
def
testAttrListItems
(
self
):
pass
def
testAttrListItemNS
(
self
):
pass
def
testAttrListKeys
(
self
):
pass
def
testAttrListKeysNS
(
self
):
pass
def
testRemoveNamedItem
(
self
):
doc
=
parseString
(
"<doc a=''/>"
)
e
=
doc
.
documentElement
...
...
@@ -581,30 +540,6 @@ class MinidomTest(unittest.TestCase):
self
.
assertRaises
(
xml
.
dom
.
NotFoundErr
,
attrs
.
removeNamedItemNS
,
"http://xml.python.org/"
,
"b"
)
def
testAttrListValues
(
self
):
pass
def
testAttrListLength
(
self
):
pass
def
testAttrList__getitem__
(
self
):
pass
def
testAttrList__setitem__
(
self
):
pass
def
testSetAttrValueandNodeValue
(
self
):
pass
def
testParseElement
(
self
):
pass
def
testParseAttributes
(
self
):
pass
def
testParseElementNamespaces
(
self
):
pass
def
testParseAttributeNamespaces
(
self
):
pass
def
testParseProcessingInstructions
(
self
):
pass
def
testChildNodes
(
self
):
pass
def
testFirstChild
(
self
):
pass
def
testHasChildNodes
(
self
):
dom
=
parseString
(
"<doc><foo/></doc>"
)
doc
=
dom
.
documentElement
...
...
Misc/ACKS
Dosyayı görüntüle @
e36e8be2
...
...
@@ -459,6 +459,7 @@ Eric Groo
Dag Gruneau
Filip Gruszczyński
Thomas Guettler
Ajitesh Gupta
Michael Guravage
Lars Gustäbel
Thomas Güttler
...
...
Misc/NEWS
Dosyayı görüntüle @
e36e8be2
...
...
@@ -165,6 +165,8 @@ IDLE
Tests
-----
- Issue #19683: Removed empty tests from test_minidom. Patch by Ajitesh Gupta.
- Issue #19919: Fix flacky SSL test. connect_ex() sometimes returns
EWOULDBLOCK on Windows or VMs hosted on Windows.
...
...
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