From: cocoatomo Date: Thu, 5 Apr 2012 17:53:39 +0000 (+0900) Subject: There is no need to initialize Environment#bytecode_cache. X-Git-Tag: 2.7~45^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f4dd2a48f8537660689e1083fbe6012771d34157;p=thirdparty%2Fjinja.git There is no need to initialize Environment#bytecode_cache. --- diff --git a/jinja2/environment.py b/jinja2/environment.py index ebb54548..5ae47176 100644 --- a/jinja2/environment.py +++ b/jinja2/environment.py @@ -270,7 +270,6 @@ class Environment(object): # set the loader provided self.loader = loader - self.bytecode_cache = None self.cache = create_cache(cache_size) self.bytecode_cache = bytecode_cache self.auto_reload = auto_reload