(self, environment, template)
| 347 | return loader, name |
| 348 | |
| 349 | def get_source(self, environment, template): |
| 350 | loader, name = self.get_loader(template) |
| 351 | try: |
| 352 | return loader.get_source(environment, name) |
| 353 | except TemplateNotFound: |
| 354 | # re-raise the exception with the correct filename here. |
| 355 | # (the one that includes the prefix) |
| 356 | raise TemplateNotFound(template) |
| 357 | |
| 358 | @internalcode |
| 359 | def load(self, environment, name, globals=None): |
nothing calls this directly
no test coverage detected