OLD | NEW |
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 Loading... |
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__ |
OLD | NEW |