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
33315b18
Commit
33315b18
authored
Sep 24, 2000
by
Martin v. Löwis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use findfile to locate input and output files.
parent
e292a245
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
Lib/test/test_sax.py
Lib/test/test_sax.py
+7
-7
No files found.
Lib/test/test_sax.py
View file @
33315b18
...
...
@@ -7,7 +7,7 @@ from xml.sax.expatreader import create_parser
from
xml.sax.xmlreader
import
InputSource
,
AttributesImpl
,
AttributesNSImpl
from
xml.sax.handler
import
ContentHandler
from
cStringIO
import
StringIO
from
test_support
import
verbose
,
TestFailed
from
test_support
import
verbose
,
TestFailed
,
findfile
# ===== Utilities
...
...
@@ -260,7 +260,7 @@ def test_expat_nsattrs_wattr():
# ===== InputSource support
xml_test_out
=
open
(
"test.xml.out"
).
read
()
xml_test_out
=
open
(
findfile
(
"test.xml.out"
)
).
read
()
def
test_expat_inpsource_filename
():
parser
=
create_parser
()
...
...
@@ -268,7 +268,7 @@ def test_expat_inpsource_filename():
xmlgen
=
XMLGenerator
(
result
)
parser
.
setContentHandler
(
xmlgen
)
parser
.
parse
(
"test.xml"
)
parser
.
parse
(
findfile
(
"test.xml"
)
)
return
result
.
getvalue
()
==
xml_test_out
...
...
@@ -278,7 +278,7 @@ def test_expat_inpsource_sysid():
xmlgen
=
XMLGenerator
(
result
)
parser
.
setContentHandler
(
xmlgen
)
parser
.
parse
(
InputSource
(
"test.xml"
))
parser
.
parse
(
InputSource
(
findfile
(
"test.xml"
)
))
return
result
.
getvalue
()
==
xml_test_out
...
...
@@ -289,7 +289,7 @@ def test_expat_inpsource_stream():
parser
.
setContentHandler
(
xmlgen
)
inpsrc
=
InputSource
()
inpsrc
.
setByteStream
(
open
(
"test.xml"
))
inpsrc
.
setByteStream
(
open
(
findfile
(
"test.xml"
)
))
parser
.
parse
(
inpsrc
)
return
result
.
getvalue
()
==
xml_test_out
...
...
@@ -445,9 +445,9 @@ def make_test_output():
xmlgen
=
XMLGenerator
(
result
)
parser
.
setContentHandler
(
xmlgen
)
parser
.
parse
(
"test.xml"
)
parser
.
parse
(
findfile
(
"test.xml"
)
)
outf
=
open
(
"test.xml.out"
,
"w"
)
outf
=
open
(
findfile
(
"test.xml.out"
)
,
"w"
)
outf
.
write
(
result
.
getvalue
())
outf
.
close
()
...
...
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