Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
8673ab97
Commit
8673ab97
authored
Feb 02, 2013
by
Serhiy Storchaka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #11159: SAX parser now supports unicode file names.
parent
6e7da152
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
79 additions
and
6 deletions
+79
-6
Lib/test/test_sax.py
Lib/test/test_sax.py
+50
-0
Lib/xml/sax/expatreader.py
Lib/xml/sax/expatreader.py
+4
-1
Lib/xml/sax/saxutils.py
Lib/xml/sax/saxutils.py
+23
-5
Misc/NEWS
Misc/NEWS
+2
-0
No files found.
Lib/test/test_sax.py
View file @
8673ab97
...
...
@@ -14,6 +14,8 @@ from xml.sax.expatreader import create_parser
from
xml.sax.handler
import
feature_namespaces
from
xml.sax.xmlreader
import
InputSource
,
AttributesImpl
,
AttributesNSImpl
from
cStringIO
import
StringIO
import
shutil
import
test.test_support
as
support
from
test.test_support
import
findfile
,
run_unittest
import
unittest
...
...
@@ -384,6 +386,22 @@ class ExpatReaderTest(XmlTestBase):
self
.
assertEqual
(
result
.
getvalue
(),
xml_test_out
)
@
unittest
.
skipUnless
(
hasattr
(
support
,
'TESTFN_UNICODE'
),
'Requires unicode filenames support'
)
def
test_expat_file_unicode
(
self
):
fname
=
support
.
TESTFN_UNICODE
shutil
.
copyfile
(
TEST_XMLFILE
,
fname
)
self
.
addCleanup
(
support
.
unlink
,
fname
)
parser
=
create_parser
()
result
=
StringIO
()
xmlgen
=
XMLGenerator
(
result
)
parser
.
setContentHandler
(
xmlgen
)
parser
.
parse
(
open
(
fname
))
self
.
assertEqual
(
result
.
getvalue
(),
xml_test_out
)
# ===== DTDHandler support
class
TestDTDHandler
:
...
...
@@ -523,6 +541,22 @@ class ExpatReaderTest(XmlTestBase):
self
.
assertEqual
(
result
.
getvalue
(),
xml_test_out
)
@
unittest
.
skipUnless
(
hasattr
(
support
,
'TESTFN_UNICODE'
),
'Requires unicode filenames support'
)
def
test_expat_inpsource_sysid_unicode
(
self
):
fname
=
support
.
TESTFN_UNICODE
shutil
.
copyfile
(
TEST_XMLFILE
,
fname
)
self
.
addCleanup
(
support
.
unlink
,
fname
)
parser
=
create_parser
()
result
=
StringIO
()
xmlgen
=
XMLGenerator
(
result
)
parser
.
setContentHandler
(
xmlgen
)
parser
.
parse
(
InputSource
(
fname
))
self
.
assertEqual
(
result
.
getvalue
(),
xml_test_out
)
def
test_expat_inpsource_stream
(
self
):
parser
=
create_parser
()
result
=
StringIO
()
...
...
@@ -596,6 +630,22 @@ class ExpatReaderTest(XmlTestBase):
self
.
assertEqual
(
parser
.
getSystemId
(),
TEST_XMLFILE
)
self
.
assertEqual
(
parser
.
getPublicId
(),
None
)
@
unittest
.
skipUnless
(
hasattr
(
support
,
'TESTFN_UNICODE'
),
'Requires unicode filenames support'
)
def
test_expat_locator_withinfo_unicode
(
self
):
fname
=
support
.
TESTFN_UNICODE
shutil
.
copyfile
(
TEST_XMLFILE
,
fname
)
self
.
addCleanup
(
support
.
unlink
,
fname
)
result
=
StringIO
()
xmlgen
=
XMLGenerator
(
result
)
parser
=
create_parser
()
parser
.
setContentHandler
(
xmlgen
)
parser
.
parse
(
fname
)
self
.
assertEqual
(
parser
.
getSystemId
(),
fname
)
self
.
assertEqual
(
parser
.
getPublicId
(),
None
)
# ===========================================================================
#
...
...
Lib/xml/sax/expatreader.py
View file @
8673ab97
...
...
@@ -108,7 +108,10 @@ class ExpatParser(xmlreader.IncrementalParser, xmlreader.Locator):
def
prepareParser
(
self
,
source
):
if
source
.
getSystemId
()
is
not
None
:
self
.
_parser
.
SetBase
(
source
.
getSystemId
())
base
=
source
.
getSystemId
()
if
isinstance
(
base
,
unicode
):
base
=
base
.
encode
(
'utf-8'
)
self
.
_parser
.
SetBase
(
base
)
# Redefined setContentHandler to allow changing handlers during parsing
...
...
Lib/xml/sax/saxutils.py
View file @
8673ab97
...
...
@@ -4,6 +4,7 @@ convenience of application and driver writers.
"""
import
os
,
urlparse
,
urllib
,
types
import
sys
import
handler
import
xmlreader
...
...
@@ -293,14 +294,31 @@ def prepare_input_source(source, base = ""):
source
.
setSystemId
(
f
.
name
)
if
source
.
getByteStream
()
is
None
:
sysid
=
source
.
getSystemId
()
basehead
=
os
.
path
.
dirname
(
os
.
path
.
normpath
(
base
))
sysidfilename
=
os
.
path
.
join
(
basehead
,
sysid
)
if
os
.
path
.
isfile
(
sysidfilename
):
try
:
sysid
=
source
.
getSystemId
()
basehead
=
os
.
path
.
dirname
(
os
.
path
.
normpath
(
base
))
encoding
=
sys
.
getfilesystemencoding
()
if
isinstance
(
sysid
,
unicode
):
if
not
isinstance
(
basehead
,
unicode
):
try
:
basehead
=
basehead
.
decode
(
encoding
)
except
UnicodeDecodeError
:
sysid
=
sysid
.
encode
(
encoding
)
else
:
if
isinstance
(
basehead
,
unicode
):
try
:
sysid
=
sysid
.
decode
(
encoding
)
except
UnicodeDecodeError
:
basehead
=
basehead
.
encode
(
encoding
)
sysidfilename
=
os
.
path
.
join
(
basehead
,
sysid
)
isfile
=
os
.
path
.
isfile
(
sysidfilename
)
except
UnicodeError
:
isfile
=
False
if
isfile
:
source
.
setSystemId
(
sysidfilename
)
f
=
open
(
sysidfilename
,
"rb"
)
else
:
source
.
setSystemId
(
urlparse
.
urljoin
(
base
,
s
ysid
))
source
.
setSystemId
(
urlparse
.
urljoin
(
base
,
s
ource
.
getSystemId
()
))
f
=
urllib
.
urlopen
(
source
.
getSystemId
())
source
.
setByteStream
(
f
)
...
...
Misc/NEWS
View file @
8673ab97
...
...
@@ -202,6 +202,8 @@ Core and Builtins
Library
-------
- Issue #11159: SAX parser now supports unicode file names.
- Issue #6972: The zipfile module no longer overwrites files outside of
its destination path when extracting malicious zip files.
...
...
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