diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-02-20 19:16:16 -0500 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-02-20 19:16:16 -0500 |
| commit | 4737c269f5658fdab4190504cd5744e95bae1688 (patch) | |
| tree | 5fe1c5244f4e7d263e7d564f924797062859d9c5 /CHANGES | |
| parent | bdbe02356b6fa9acb6739879ead25a54e2c62ecb (diff) | |
| download | external_python_mako-4737c269f5658fdab4190504cd5744e95bae1688.tar.gz external_python_mako-4737c269f5658fdab4190504cd5744e95bae1688.tar.bz2 external_python_mako-4737c269f5658fdab4190504cd5744e95bae1688.zip | |
- use inlined getargspec
- The "output encoding" now defaults
to "ascii", whereas previously
it was set to None. This has the effect
of FastEncodingBuffer being used internally
by default when render() is called, instead
of cStringIO or StringIO, which are
slower, but allow bytestrings with
unknown encoding to pass right through.
It is of course not recommended to use
bytestrings of unknown encoding. Usage of
the "disable_unicode" mode also requires
that output_encoding be set to None.
Diffstat (limited to 'CHANGES')
| -rw-r--r-- | CHANGES | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -1,3 +1,21 @@ +0.4.0 +- The "output encoding" now defaults + to "ascii", whereas previously + it was set to None. This has the effect + of FastEncodingBuffer being used internally + by default when render() is called, instead + of cStringIO or StringIO, which are + slower, but allow bytestrings with + unknown encoding to pass right through. + It is of course not recommended to use + bytestrings of unknown encoding. Usage of + the "disable_unicode" mode also requires + that output_encoding be set to None. + +- the <%namespace> tag raises an error + if the 'template' and 'module' attributes + are specified at the same time. + 0.3.6 - Documentation is on Sphinx. [ticket:126] |
