From: Armin Ronacher Date: Mon, 22 Oct 2007 21:31:48 +0000 (+0200) Subject: documented change X-Git-Tag: 2.0rc1~249 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=77e2ab5ad2315e98e9c402bec367bfb57a5108e7;p=jinja2.git documented change --HG-- branch : trunk --- diff --git a/CHANGES b/CHANGES index 77961d5..c791cd8 100644 --- 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 ----------- diff --git a/jinja/loaders.py b/jinja/loaders.py index 6fc4ac7..ecef455 100644 --- a/jinja/loaders.py +++ b/jinja/loaders.py @@ -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/ """