summaryrefslogtreecommitdiff
path: root/jinja2/__init__.py
diff options
context:
space:
mode:
authorArmin Ronacher <armin.ronacher@active-4.com>2008-09-18 18:09:06 +0200
committerArmin Ronacher <armin.ronacher@active-4.com>2008-09-18 18:09:06 +0200
commitaa1d17d6ca2e4a9c049636b9dab826784186c297 (patch)
tree1e73b9d9b322c8305e7fbfeb0532eefa65c7aee3 /jinja2/__init__.py
parent03f8823594d1aee450f0861e1e824ae80a3dbe13 (diff)
downloadjinja2-aa1d17d6ca2e4a9c049636b9dab826784186c297.tar.gz
Fixed bytecode cache and added support for memcached (tests still missing)
--HG-- branch : trunk
Diffstat (limited to 'jinja2/__init__.py')
-rw-r--r--jinja2/__init__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/jinja2/__init__.py b/jinja2/__init__.py
index f7576d1..0a3ff6f 100644
--- a/jinja2/__init__.py
+++ b/jinja2/__init__.py
@@ -41,7 +41,8 @@ from jinja2.loaders import BaseLoader, FileSystemLoader, PackageLoader, \
DictLoader, FunctionLoader, PrefixLoader, ChoiceLoader
# bytecode caches
-from jinja2.bccache import BytecodeCache, FileSystemBytecodeCache
+from jinja2.bccache import BytecodeCache, FileSystemBytecodeCache, \
+ MemcachedBytecodeCache
# undefined types
from jinja2.runtime import Undefined, DebugUndefined, StrictUndefined