Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
pystache_custom
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
pystache_custom
Commits
da8a3b89
Commit
da8a3b89
authored
Apr 05, 2012
by
Chris Jerdonek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Switched to using codecs.open() in tests/test_spec.py for Python 3 support.
parent
844ebdbc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
4 deletions
+23
-4
pystache/tests/test_spec.py
+23
-4
No files found.
pystache/tests/test_spec.py
View file @
da8a3b89
...
...
@@ -31,6 +31,7 @@ else:
parser
=
yaml
import
codecs
import
glob
import
os.path
import
unittest
...
...
@@ -160,15 +161,33 @@ for spec_path in spec_paths:
file_name
=
os
.
path
.
basename
(
spec_path
)
# We avoid use of the with keyword for Python 2.4 support.
# We use codecs.open() for pre Python 2.6 support and because it ports
# correctly to Python 3:
#
# "If pre-2.6 compatibility is needed, then you should use codecs.open()
# instead. This will make sure that you get back unicode strings in Python 2."
#
# (from http://docs.python.org/py3k/howto/pyporting.html#text-files )
#
# TODO: share code here with pystache's open() code.
f
=
open
(
spec_path
,
'r'
)
f
=
codecs
.
open
(
spec_path
,
'r'
,
encoding
=
FILE_ENCODING
)
try
:
s
=
f
.
read
()
u
=
f
.
read
()
finally
:
f
.
close
()
u
=
s
.
decode
(
FILE_ENCODING
)
# The only way to get the simplejson module to return unicode strings
# is to pass it unicode. See, for example--
#
# http://code.google.com/p/simplejson/issues/detail?id=40
#
# and the documentation of simplejson.loads():
#
# "If s is a str then decoded JSON strings that contain only ASCII
# characters may be parsed as str for performance and memory reasons.
# If your code expects only unicode the appropriate solution is
# decode s to unicode prior to calling loads."
#
spec_data
=
parse
(
u
,
file_extension
)
tests
=
spec_data
[
'tests'
]
...
...
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