aboutsummaryrefslogtreecommitdiffstats
path: root/CHANGES
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2011-02-20 19:16:16 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2011-02-20 19:16:16 -0500
commit4737c269f5658fdab4190504cd5744e95bae1688 (patch)
tree5fe1c5244f4e7d263e7d564f924797062859d9c5 /CHANGES
parentbdbe02356b6fa9acb6739879ead25a54e2c62ecb (diff)
downloadexternal_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--CHANGES18
1 files changed, 18 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index c993ad6..51189eb 100644
--- a/CHANGES
+++ b/CHANGES
@@ -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]