(self, source, gettext_functions=GETTEXT_FUNCTIONS)
| 210 | self.environment.globals.pop(key, None) |
| 211 | |
| 212 | def _extract(self, source, gettext_functions=GETTEXT_FUNCTIONS): |
| 213 | if isinstance(source, string_types): |
| 214 | source = self.environment.parse(source) |
| 215 | return extract_from_ast(source, gettext_functions) |
| 216 | |
| 217 | def parse(self, parser): |
| 218 | """Parse a translatable tag.""" |
nothing calls this directly
no test coverage detected