Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10)

Unified Diff: third_party/jinja2/__init__.py

Issue 2316103002: binding: Updates Jinja2 from 2.7.1 to 2.8. (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/jinja2/README.chromium ('k') | third_party/jinja2/_compat.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/jinja2/__init__.py
diff --git a/third_party/jinja2/__init__.py b/third_party/jinja2/__init__.py
index 6fa11c3a6db52cea4b2ea92a60b3745c86025983..029fb2e6e8b1c9be6dba38a4ea997defd1a7de38 100644
--- a/third_party/jinja2/__init__.py
+++ b/third_party/jinja2/__init__.py
@@ -27,7 +27,7 @@
:license: BSD, see LICENSE for more details.
"""
__docformat__ = 'restructuredtext en'
-__version__ = '2.7.1'
+__version__ = '2.8'
# high level interface
from jinja2.environment import Environment, Template
@@ -42,7 +42,8 @@ from jinja2.bccache import BytecodeCache, FileSystemBytecodeCache, \
MemcachedBytecodeCache
# undefined types
-from jinja2.runtime import Undefined, DebugUndefined, StrictUndefined
+from jinja2.runtime import Undefined, DebugUndefined, StrictUndefined, \
+ make_logging_undefined
# exceptions
from jinja2.exceptions import TemplateError, UndefinedError, \
@@ -65,5 +66,5 @@ __all__ = [
'TemplatesNotFound', 'TemplateSyntaxError', 'TemplateAssertionError',
'ModuleLoader', 'environmentfilter', 'contextfilter', 'Markup', 'escape',
'environmentfunction', 'contextfunction', 'clear_caches', 'is_undefined',
- 'evalcontextfilter', 'evalcontextfunction'
+ 'evalcontextfilter', 'evalcontextfunction', 'make_logging_undefined',
]
« no previous file with comments | « third_party/jinja2/README.chromium ('k') | third_party/jinja2/_compat.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698