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

Side by Side Diff: mojo/public/third_party/jinja2/defaults.py

Issue 801523002: Bundle the DEPS of mojom_bindings_generator.py with the public SDK. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Rebase Created 6 years 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 unified diff | Download patch
« no previous file with comments | « mojo/public/third_party/jinja2/debug.py ('k') | mojo/public/third_party/jinja2/environment.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # -*- coding: utf-8 -*- 1 # -*- coding: utf-8 -*-
2 """ 2 """
3 jinja2.defaults 3 jinja2.defaults
4 ~~~~~~~~~~~~~~~ 4 ~~~~~~~~~~~~~~~
5 5
6 Jinja default filters and tags. 6 Jinja default filters and tags.
7 7
8 :copyright: (c) 2010 by the Jinja Team. 8 :copyright: (c) 2010 by the Jinja Team.
9 :license: BSD, see LICENSE for more details. 9 :license: BSD, see LICENSE for more details.
10 """ 10 """
(...skipping 23 matching lines...) Expand all
34 'range': range_type, 34 'range': range_type,
35 'dict': lambda **kw: kw, 35 'dict': lambda **kw: kw,
36 'lipsum': generate_lorem_ipsum, 36 'lipsum': generate_lorem_ipsum,
37 'cycler': Cycler, 37 'cycler': Cycler,
38 'joiner': Joiner 38 'joiner': Joiner
39 } 39 }
40 40
41 41
42 # export all constants 42 # export all constants
43 __all__ = tuple(x for x in locals().keys() if x.isupper()) 43 __all__ = tuple(x for x in locals().keys() if x.isupper())
OLDNEW
« no previous file with comments | « mojo/public/third_party/jinja2/debug.py ('k') | mojo/public/third_party/jinja2/environment.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698