Render the template with the specified local variables and return a single byte or unicode string. If it is a byte string, the encoding must match self.encoding. This method must be thread-safe! Local variables may be provided in dictionaries (*args) or directly, as
(self, *args, **kwargs)
| 2507 | raise NotImplementedError |
| 2508 | |
| 2509 | def render(self, *args, **kwargs): |
| 2510 | """ Render the template with the specified local variables and return |
| 2511 | a single byte or unicode string. If it is a byte string, the encoding |
| 2512 | must match self.encoding. This method must be thread-safe! |
| 2513 | Local variables may be provided in dictionaries (*args) |
| 2514 | or directly, as keywords (**kwargs). |
| 2515 | """ |
| 2516 | raise NotImplementedError |
| 2517 | |
| 2518 | |
| 2519 | class MakoTemplate(BaseTemplate): |
no outgoing calls
no test coverage detected