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
14aa280d
Kaydet (Commit)
14aa280d
authored
Şub 19, 2012
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Use __slots__ throughout instead of __dict__, to reduce the memory usage.
üst
32ac92cd
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
26 deletions
+13
-26
expatbuilder.py
Lib/xml/dom/expatbuilder.py
+13
-26
minidom.py
Lib/xml/dom/minidom.py
+0
-0
No files found.
Lib/xml/dom/expatbuilder.py
Dosyayı görüntüle @
14aa280d
...
...
@@ -283,27 +283,23 @@ class ExpatBuilder:
elif
childNodes
and
childNodes
[
-
1
]
.
nodeType
==
TEXT_NODE
:
node
=
childNodes
[
-
1
]
value
=
node
.
data
+
data
d
=
node
.
__dict__
d
[
'data'
]
=
d
[
'nodeValue'
]
=
value
node
.
data
=
value
return
else
:
node
=
minidom
.
Text
()
d
=
node
.
__dict__
d
[
'data'
]
=
d
[
'nodeValue'
]
=
data
d
[
'ownerDocument'
]
=
self
.
document
node
.
data
=
data
node
.
ownerDocument
=
self
.
document
_append_child
(
self
.
curNode
,
node
)
def
character_data_handler
(
self
,
data
):
childNodes
=
self
.
curNode
.
childNodes
if
childNodes
and
childNodes
[
-
1
]
.
nodeType
==
TEXT_NODE
:
node
=
childNodes
[
-
1
]
d
=
node
.
__dict__
d
[
'data'
]
=
d
[
'nodeValue'
]
=
node
.
data
+
data
node
.
data
=
node
.
data
+
data
return
node
=
minidom
.
Text
()
d
=
node
.
__dict__
d
[
'data'
]
=
d
[
'nodeValue'
]
=
node
.
data
+
data
d
[
'ownerDocument'
]
=
self
.
document
node
.
data
=
node
.
data
+
data
node
.
ownerDocument
=
self
.
document
_append_child
(
self
.
curNode
,
node
)
def
entity_decl_handler
(
self
,
entityName
,
is_parameter_entity
,
value
,
...
...
@@ -363,11 +359,8 @@ class ExpatBuilder:
a
=
minidom
.
Attr
(
attributes
[
i
],
EMPTY_NAMESPACE
,
None
,
EMPTY_PREFIX
)
value
=
attributes
[
i
+
1
]
d
=
a
.
childNodes
[
0
]
.
__dict__
d
[
'data'
]
=
d
[
'nodeValue'
]
=
value
d
=
a
.
__dict__
d
[
'value'
]
=
d
[
'nodeValue'
]
=
value
d
[
'ownerDocument'
]
=
self
.
document
a
.
value
=
value
a
.
ownerDocument
=
self
.
document
_set_attribute_node
(
node
,
a
)
if
node
is
not
self
.
document
.
documentElement
:
...
...
@@ -761,11 +754,8 @@ class Namespaces:
else
:
a
=
minidom
.
Attr
(
"xmlns"
,
XMLNS_NAMESPACE
,
"xmlns"
,
EMPTY_PREFIX
)
d
=
a
.
childNodes
[
0
]
.
__dict__
d
[
'data'
]
=
d
[
'nodeValue'
]
=
uri
d
=
a
.
__dict__
d
[
'value'
]
=
d
[
'nodeValue'
]
=
uri
d
[
'ownerDocument'
]
=
self
.
document
a
.
value
=
uri
a
.
ownerDocuemnt
=
self
.
document
_set_attribute_node
(
node
,
a
)
del
self
.
_ns_ordered_prefixes
[:]
...
...
@@ -785,12 +775,9 @@ class Namespaces:
aname
,
EMPTY_PREFIX
)
_attrs
[
aname
]
=
a
_attrsNS
[(
EMPTY_NAMESPACE
,
aname
)]
=
a
d
=
a
.
childNodes
[
0
]
.
__dict__
d
[
'data'
]
=
d
[
'nodeValue'
]
=
value
d
=
a
.
__dict__
d
[
'ownerDocument'
]
=
self
.
document
d
[
'value'
]
=
d
[
'nodeValue'
]
=
value
d
[
'ownerElement'
]
=
node
a
.
ownerDocument
=
self
.
document
a
.
value
=
value
a
.
ownerElement
=
node
if
__debug__
:
# This only adds some asserts to the original
...
...
Lib/xml/dom/minidom.py
Dosyayı görüntüle @
14aa280d
This diff is collapsed.
Click to expand it.
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