Iterates over all templates. If the loader does not support that it should raise a :exc:`TypeError` which is the default behavior.
(self)
| 91 | raise TemplateNotFound(template) |
| 92 | |
| 93 | def list_templates(self): |
| 94 | """Iterates over all templates. If the loader does not support that |
| 95 | it should raise a :exc:`TypeError` which is the default behavior. |
| 96 | """ |
| 97 | raise TypeError('this loader cannot iterate over all templates') |
| 98 | |
| 99 | @internalcode |
| 100 | def load(self, environment, name, globals=None): |
no outgoing calls
no test coverage detected