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
564e4d8d
Kaydet (Commit)
564e4d8d
authored
Ock 22, 2013
tarafından
Ezio Melotti
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
#11379: merge with 3.2.
üst
a3bdce8c
da4b5b82
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
16 deletions
+11
-16
xml.dom.minidom.rst
Doc/library/xml.dom.minidom.rst
+8
-14
minidom.py
Lib/xml/dom/minidom.py
+3
-2
No files found.
Doc/library/xml.dom.minidom.rst
Dosyayı görüntüle @
564e4d8d
:mod:`xml.dom.minidom` ---
Lightweight
DOM implementation
:mod:`xml.dom.minidom` ---
Minimal
DOM implementation
=====================================================
====
=====================================================
.. module:: xml.dom.minidom
.. module:: xml.dom.minidom
:synopsis:
Lightweight
Document Object Model (DOM) implementation.
:synopsis:
Minimal
Document Object Model (DOM) implementation.
.. moduleauthor:: Paul Prescod <paul@prescod.net>
.. moduleauthor:: Paul Prescod <paul@prescod.net>
.. sectionauthor:: Paul Prescod <paul@prescod.net>
.. sectionauthor:: Paul Prescod <paul@prescod.net>
.. sectionauthor:: Martin v. Löwis <martin@v.loewis.de>
.. sectionauthor:: Martin v. Löwis <martin@v.loewis.de>
...
@@ -11,17 +11,11 @@
...
@@ -11,17 +11,11 @@
--------------
--------------
:mod:`xml.dom.minidom` is a light-weight implementation of the Document Object
:mod:`xml.dom.minidom` is a minimal implementation of the Document Object
Model interface. It is intended to be simpler than the full DOM and also
Model interface, with an API similar to that in other languages. It is intended
significantly smaller.
to be simpler than the full DOM and also significantly smaller. Users who are
not already proficient with the DOM should consider using the
.. note::
:mod:`xml.etree.ElementTree` module for their XML processing instead
The :mod:`xml.dom.minidom` module provides an implementation of the W3C-DOM,
with an API similar to that in other programming languages. Users who are
unfamiliar with the W3C-DOM interface or who would like to write less code
for processing XML files should consider using the
:mod:`xml.etree.ElementTree` module instead.
DOM applications typically start by parsing some XML into a DOM. With
DOM applications typically start by parsing some XML into a DOM. With
:mod:`xml.dom.minidom`, this is done through the parse functions::
:mod:`xml.dom.minidom`, this is done through the parse functions::
...
...
Lib/xml/dom/minidom.py
Dosyayı görüntüle @
564e4d8d
"""
\
"""Simple implementation of the Level 1 DOM.
minidom.py -- a lightweight DOM implementation.
Namespaces and other minor Level 2 features are also supported.
parse("foo.xml")
parse("foo.xml")
...
...
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