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
778db289
Kaydet (Commit)
778db289
authored
Nis 04, 2015
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #10590: xml.sax.parseString() now supports string argument.
üst
f8aa133c
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
19 additions
and
4 deletions
+19
-4
xml.sax.rst
Doc/library/xml.sax.rst
+5
-1
test_sax.py
Lib/test/test_sax.py
+7
-0
__init__.py
Lib/xml/sax/__init__.py
+5
-3
NEWS
Misc/NEWS
+2
-0
No files found.
Doc/library/xml.sax.rst
Dosyayı görüntüle @
778db289
...
...
@@ -47,7 +47,11 @@ The convenience functions are:
.. function:: parseString(string, handler, error_handler=handler.ErrorHandler())
Similar to :func:`parse`, but parses from a buffer *string* received as a
parameter.
parameter. *string* must be a :class:`str` instance or a
:term:`bytes-like object`.
.. versionchanged:: 3.5
Added support of :class:`str` instances.
A typical SAX application uses three kinds of objects: readers, handlers and
input sources. "Reader" in this context is another term for parser, i.e. some
...
...
Lib/test/test_sax.py
Dosyayı görüntüle @
778db289
...
...
@@ -200,6 +200,13 @@ class ParseTest(unittest.TestCase):
parseString
(
s
,
XMLGenerator
(
result
,
'utf-8'
))
self
.
assertEqual
(
result
.
getvalue
(),
xml_str
(
self
.
data
,
'utf-8'
))
def
test_parseString_text
(
self
):
encodings
=
(
'us-ascii'
,
'iso-8859-1'
,
'utf-8'
,
'utf-16'
,
'utf-16le'
,
'utf-16be'
)
for
encoding
in
encodings
:
self
.
check_parseString
(
xml_str
(
self
.
data
,
encoding
))
self
.
check_parseString
(
self
.
data
)
def
test_parseString_bytes
(
self
):
# UTF-8 is default encoding, US-ASCII is compatible with UTF-8,
# UTF-16 is autodetected
...
...
Lib/xml/sax/__init__.py
Dosyayı görüntüle @
778db289
...
...
@@ -33,8 +33,7 @@ def parse(source, handler, errorHandler=ErrorHandler()):
parser
.
parse
(
source
)
def
parseString
(
string
,
handler
,
errorHandler
=
ErrorHandler
()):
from
io
import
BytesIO
import
io
if
errorHandler
is
None
:
errorHandler
=
ErrorHandler
()
parser
=
make_parser
()
...
...
@@ -42,7 +41,10 @@ def parseString(string, handler, errorHandler=ErrorHandler()):
parser
.
setErrorHandler
(
errorHandler
)
inpsrc
=
InputSource
()
inpsrc
.
setByteStream
(
BytesIO
(
string
))
if
isinstance
(
string
,
str
):
inpsrc
.
setCharacterStream
(
io
.
StringIO
(
string
))
else
:
inpsrc
.
setByteStream
(
io
.
BytesIO
(
string
))
parser
.
parse
(
inpsrc
)
# this is the parser list used by the make_parser function if no
...
...
Misc/NEWS
Dosyayı görüntüle @
778db289
...
...
@@ -19,6 +19,8 @@ Core and Builtins
Library
-------
- Issue #10590: xml.sax.parseString() now supports string argument.
- Issue #23338: Fixed formatting ctypes error messages on Cygwin.
Patch by Makoto Kato.
...
...
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