Home | History | Annotate | Download | only in jinja2

Lines Matching refs:errors

614         By default template compilation errors are ignored.  In case a
615 log function is provided, errors are logged. If you want template
616 syntax errors to abort the compilation you can set `ignore_errors`
617 to `False` and you will get an exception on syntax errors.
1123 def dump(self, fp, encoding=None, errors='strict'):
1138 iterable = (x.encode(encoding, errors) for x in self)