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

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

Issue 1410053006: Move third_party/mojo/src/mojo/public to mojo/public (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 5 years, 1 month 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/parser.py ('k') | mojo/public/third_party/jinja2/sandbox.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.runtime 3 jinja2.runtime
4 ~~~~~~~~~~~~~~ 4 ~~~~~~~~~~~~~~
5 5
6 Runtime helpers. 6 Runtime helpers.
7 7
8 :copyright: (c) 2010 by the Jinja Team. 8 :copyright: (c) 2010 by the Jinja Team.
9 :license: BSD. 9 :license: BSD.
10 """ 10 """
(...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after
572 """ 572 """
573 __slots__ = () 573 __slots__ = ()
574 __iter__ = __str__ = __len__ = __nonzero__ = __eq__ = \ 574 __iter__ = __str__ = __len__ = __nonzero__ = __eq__ = \
575 __ne__ = __bool__ = __hash__ = \ 575 __ne__ = __bool__ = __hash__ = \
576 Undefined._fail_with_undefined_error 576 Undefined._fail_with_undefined_error
577 577
578 578
579 # remove remaining slots attributes, after the metaclass did the magic they 579 # remove remaining slots attributes, after the metaclass did the magic they
580 # are unneeded and irritating as they contain wrong data for the subclasses. 580 # are unneeded and irritating as they contain wrong data for the subclasses.
581 del Undefined.__slots__, DebugUndefined.__slots__, StrictUndefined.__slots__ 581 del Undefined.__slots__, DebugUndefined.__slots__, StrictUndefined.__slots__
OLDNEW
« no previous file with comments | « mojo/public/third_party/jinja2/parser.py ('k') | mojo/public/third_party/jinja2/sandbox.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698