Get a new unique identifier.
(self)
| 315 | raise TemplateAssertionError(msg, lineno, self.name, self.filename) |
| 316 | |
| 317 | def temporary_identifier(self): |
| 318 | """Get a new unique identifier.""" |
| 319 | self._last_identifier += 1 |
| 320 | return 't_%d' % self._last_identifier |
| 321 | |
| 322 | def buffer(self, frame): |
| 323 | """Enable buffering for the frame from that point onwards.""" |
no outgoing calls
no test coverage detected