documented change
authorArmin Ronacher <armin.ronacher@active-4.com>
Mon, 22 Oct 2007 21:31:48 +0000 (23:31 +0200)
committerArmin Ronacher <armin.ronacher@active-4.com>
Mon, 22 Oct 2007 21:31:48 +0000 (23:31 +0200)
--HG--
branch : trunk

CHANGES
jinja/loaders.py

diff --git a/CHANGES b/CHANGES
index 77961d515ae1b99a4f3ed88197ec75e0b6956097..c791cd82300f02229aa4108123622e2ded6db20e 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -81,6 +81,9 @@ Version 1.2
 
 - added support for the `pretty` library.
 
+- changed the way the `MemcachedLoaderMixin` creates the class so that it's
+  possible to hook your own client in.
+
 
 Version 1.1
 -----------
index 6fc4ac73278ebedfa3f720708719610ea9fc70bd..ecef455a1c1a6d85cba5d2c555c6e1024986a4c2 100644 (file)
@@ -268,6 +268,10 @@ class MemcachedLoaderMixin(object):
 
     Requires the memcache library from tummy__.
 
+    With Jinja 1.2 onwards you can also provide a `client` keyword argument
+    that takes an already instanciated memcache client or memcache client
+    like object.
+
     __ http://www.tummy.com/Community/software/python-memcached/
     """