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 k
(self, *args, **kwargs)
| 3858 | raise NotImplementedError |
| 3859 | |
| 3860 | def render(self, *args, **kwargs): |
| 3861 | """ Render the template with the specified local variables and return |
| 3862 | a single byte or unicode string. If it is a byte string, the encoding |
| 3863 | must match self.encoding. This method must be thread-safe! |
| 3864 | Local variables may be provided in dictionaries (args) |
| 3865 | or directly, as keywords (kwargs). |
| 3866 | """ |
| 3867 | raise NotImplementedError |
| 3868 | |
| 3869 | |
| 3870 | class MakoTemplate(BaseTemplate): |
no outgoing calls
no test coverage detected