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
b4881434
Commit
b4881434
authored
Apr 08, 2012
by
Chris Jerdonek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Made README section on unicode correct for both Python 2 and 3.
parent
96f039d5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
16 deletions
+21
-16
README.rst
+21
-16
No files found.
README.rst
View file @
b4881434
...
@@ -92,7 +92,7 @@ in behavior between Pystache running under Python 2 and 3, as follows:
...
@@ -92,7 +92,7 @@ in behavior between Pystache running under Python 2 and 3, as follows:
``sys.getdefaultencoding()``. However, this function can return different
``sys.getdefaultencoding()``. However, this function can return different
values under Python 2 and 3, even when run from the same system. Check
values under Python 2 and 3, even when run from the same system. Check
your own system for the behavior on your system, or do not rely on the
your own system for the behavior on your system, or do not rely on the
defaults by passing
the encodings in
explicitly (e.g. to the ``Renderer`` class).
defaults by passing
in the encodings
explicitly (e.g. to the ``Renderer`` class).
Unicode Handling
Unicode Handling
...
@@ -101,24 +101,25 @@ Unicode Handling
...
@@ -101,24 +101,25 @@ Unicode Handling
This section describes Pystache's handling of unicode (e.g. strings and
This section describes Pystache's handling of unicode (e.g. strings and
encodings).
encodings).
Internally, Pystache uses `only unicode strings`_. For input, Pystache accepts
Internally, Pystache uses `only unicode strings`_ (type ``str`` in Python 3 and
both ``unicode`` and ``str`` strings. For output, Pystache's template
type ``unicode`` in Python 2). For input, Pystache accepts both unicode strings
rendering methods return only unicode.
and byte strings (``bytes`` in Python 3 and ``str`` in Python 2). For output,
Pystache's template rendering methods return only unicode.
Pystache's ``Renderer`` class supports a number of attributes t
hat
control how
Pystache's ``Renderer`` class supports a number of attributes t
o
control how
Pystache converts
``str``
strings to unicode on input. These include the
Pystache converts
byte
strings to unicode on input. These include the
``file_encoding``, ``string_encoding``, and ``decode_errors`` attributes.
``file_encoding``, ``string_encoding``, and ``decode_errors`` attributes.
The ``file_encoding`` attribute is the encoding the renderer uses to convert
The ``file_encoding`` attribute is the encoding the renderer uses to convert
to unicode any files read from the file system. Similarly, ``string_encoding``
to unicode any files read from the file system. Similarly, ``string_encoding``
is the encoding the renderer uses to convert
to unicode any other strings of
is the encoding the renderer uses to convert
any other byte strings encountered
type ``str`` encountered during the rendering process (e.g. context values
during the rendering process into unicode (e.g. context values that are
of type ``str``
).
encoded byte strings
).
The ``decode_errors`` attribute is what the renderer passes as the ``errors``
The ``decode_errors`` attribute is what the renderer passes as the ``errors``
argument to Python's
`built-in unicode function`_ ``unicode()`` when
argument to Python's
built-in unicode-decoding function (``str()`` in Python 3
converting. The valid values for this argument are ``strict``, ``ignore``,
and ``unicode()`` in Python 2). The valid values for this argument are
and ``replace``.
``strict``, ``ignore``,
and ``replace``.
Each of these attributes can be set via the ``Renderer`` class's constructor
Each of these attributes can be set via the ``Renderer`` class's constructor
using a keyword argument of the same name. See the Renderer class's
using a keyword argument of the same name. See the Renderer class's
...
@@ -140,15 +141,17 @@ To include tests from the Mustache spec in your test runs: ::
...
@@ -140,15 +141,17 @@ To include tests from the Mustache spec in your test runs: ::
git submodule update
git submodule update
### Python 3
Python 3
--------
For Python 3, we recommend installing and using
[Distribute](http://pypi.python.org/pypi/distribute)
.
For Python 3, we recommend installing and using
Distribute_
.
Then one can invoke
Distribute's [``test``](http://packages.python.org/distribute/setuptools.html#test)
command:
Then one can invoke
`Distribute's test`_
command:
python setup.py test
python setup.py test
### Python 2
Python 2
--------
For Python 2, we recommend nose_ ::
For Python 2, we recommend nose_ ::
...
@@ -197,6 +200,8 @@ Author
...
@@ -197,6 +200,8 @@ Author
.. _ctemplate: http://code.google.com/p/google-ctemplate/
.. _ctemplate: http://code.google.com/p/google-ctemplate/
.. _David Phillips: http://davidphillips.us/
.. _David Phillips: http://davidphillips.us/
.. _Distribute: http://pypi.python.org/pypi/distribute
.. _Distribute's test: http://packages.python.org/distribute/setuptools.html#test
.. _et: http://www.ivan.fomichev.name/2008/05/erlang-template-engine-prototype.html
.. _et: http://www.ivan.fomichev.name/2008/05/erlang-template-engine-prototype.html
.. _json: http://docs.python.org/library/json.html
.. _json: http://docs.python.org/library/json.html
.. _Mustache: http://mustache.github.com/
.. _Mustache: http://mustache.github.com/
...
...
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