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
5916d530
Kaydet (Commit)
5916d530
authored
Kas 27, 2014
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #22915: SAX parser now supports files opened with file descriptor or
bytes path.
üst
715f01b5
fc8e9b0e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
28 additions
and
1 deletion
+28
-1
test_sax.py
Lib/test/test_sax.py
+24
-0
saxutils.py
Lib/xml/sax/saxutils.py
+1
-1
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/test/test_sax.py
Dosyayı görüntüle @
5916d530
...
...
@@ -648,6 +648,30 @@ class ExpatReaderTest(XmlTestBase):
self
.
assertEqual
(
result
.
getvalue
(),
xml_test_out
)
def
test_expat_binary_file_bytes_name
(
self
):
fname
=
os
.
fsencode
(
TEST_XMLFILE
)
parser
=
create_parser
()
result
=
BytesIO
()
xmlgen
=
XMLGenerator
(
result
)
parser
.
setContentHandler
(
xmlgen
)
with
open
(
fname
,
'rb'
)
as
f
:
parser
.
parse
(
f
)
self
.
assertEqual
(
result
.
getvalue
(),
xml_test_out
)
def
test_expat_binary_file_int_name
(
self
):
parser
=
create_parser
()
result
=
BytesIO
()
xmlgen
=
XMLGenerator
(
result
)
parser
.
setContentHandler
(
xmlgen
)
with
open
(
TEST_XMLFILE
,
'rb'
)
as
f
:
with
open
(
f
.
fileno
(),
'rb'
,
closefd
=
False
)
as
f2
:
parser
.
parse
(
f2
)
self
.
assertEqual
(
result
.
getvalue
(),
xml_test_out
)
# ===== DTDHandler support
class
TestDTDHandler
:
...
...
Lib/xml/sax/saxutils.py
Dosyayı görüntüle @
5916d530
...
...
@@ -346,7 +346,7 @@ def prepare_input_source(source, base=""):
f
=
source
source
=
xmlreader
.
InputSource
()
source
.
setByteStream
(
f
)
if
hasattr
(
f
,
"name"
):
if
hasattr
(
f
,
"name"
)
and
isinstance
(
f
.
name
,
str
)
:
source
.
setSystemId
(
f
.
name
)
if
source
.
getByteStream
()
is
None
:
...
...
Misc/NEWS
Dosyayı görüntüle @
5916d530
...
...
@@ -191,6 +191,9 @@ Core and Builtins
Library
-------
-
Issue
#
22915
:
SAX
parser
now
supports
files
opened
with
file
descriptor
or
bytes
path
.
-
Issue
#
22609
:
Constructors
and
update
methods
of
mapping
classes
in
the
collections
module
now
accept
the
self
keyword
argument
.
...
...
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