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
7e0aef0e
Kaydet (Commit)
7e0aef0e
authored
Ara 12, 2005
tarafından
Fredrik Lundh
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
r1068@spiff: Fredrik | 2005-12-12 19:50:30 +0100
assorted xml.etree tweaks
üst
075854fc
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
19 additions
and
2 deletions
+19
-2
whatsnew25.tex
Doc/whatsnew/whatsnew25.tex
+8
-0
xmltests.py
Lib/test/xmltests.py
+1
-0
__init__.py
Lib/xml/__init__.py
+6
-2
NEWS
Misc/NEWS
+4
-0
No files found.
Doc/whatsnew/whatsnew25.tex
Dosyayı görüntüle @
7e0aef0e
...
...
@@ -421,6 +421,12 @@ using the mode \code{'r|*'}.
% patch 918101
(Contributed by Lars Gust
\"
abel.)
\item
A new package
\module
{
xml.etree
}
has been added, which contains
a subset of the ElementTree XML library. Available modules are
\module
{
ElementTree
}
,
\module
{
ElementPath
}
, and
\module
{
ElementInclude
}
, from ElementTree 1.2.6. (Contributed by
Fredrik Lundh.)
\item
The
\module
{
xmlrpclib
}
module now supports returning
\class
{
datetime
}
objects for the XML-RPC date type. Supply
\code
{
use
_
datetime=True
}
to the
\function
{
loads()
}
function
...
...
@@ -437,6 +443,8 @@ using the mode \code{'r|*'}.
% XXX new distutils features: upload
% XXX should hashlib perhaps be described here instead?
% XXX should xml.etree perhaps be described here instead?
...
...
Lib/test/xmltests.py
Dosyayı görüntüle @
7e0aef0e
...
...
@@ -15,5 +15,6 @@ def runtest(name):
runtest
(
"test.test_minidom"
)
runtest
(
"test.test_pyexpat"
)
runtest
(
"test.test_sax"
)
runtest
(
"test.test_xml_etree"
)
runtest
(
"test.test_xmllib"
)
runtest
(
"test.test_xmlrpc"
)
Lib/xml/__init__.py
Dosyayı görüntüle @
7e0aef0e
"""Core XML support for Python.
This package contains
three
sub-packages:
This package contains
four
sub-packages:
dom -- The W3C Document Object Model. This supports DOM Level 1 +
Namespaces.
...
...
@@ -10,10 +10,14 @@ parsers -- Python wrappers for XML parsers (currently only supports Expat).
sax -- The Simple API for XML, developed by XML-Dev, led by David
Megginson and ported to Python by Lars Marius Garshol. This
supports the SAX 2 API.
etree -- The ElementTree XML library. This is a subset of the full
ElementTree XML release.
"""
__all__
=
[
"dom"
,
"parsers"
,
"sax"
]
__all__
=
[
"dom"
,
"parsers"
,
"sax"
,
"etree"
]
# When being checked-out without options, this has the form
# "<dollar>Revision: x.y </dollar>"
...
...
Misc/NEWS
Dosyayı görüntüle @
7e0aef0e
...
...
@@ -292,6 +292,10 @@ Extension Modules
Library
-------
-
Added
a
subset
of
Fredrik
Lundh
's ElementTree package. Available
modules are xml.etree.ElementTree, xml.etree.ElementPath, and
xml.etree.ElementInclude, from ElementTree 1.2.6.
- Patch #1162825: Support non-ASCII characters in IDLE window titles.
- Bug #1365984: urllib now opens "data:" URLs again.
...
...
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