Execute the style functions built up in `self._todo`. Relies on the conventions that all style functions go through .apply or .map. The append styles to apply as tuples of (application method, *args, **kwargs)
(self)
| 266 | return self.template_string.render(**d) |
| 267 | |
| 268 | def _compute(self): |
| 269 | """ |
| 270 | Execute the style functions built up in `self._todo`. |
| 271 | |
| 272 | Relies on the conventions that all style functions go through |
| 273 | .apply or .map. The append styles to apply as tuples of |
| 274 | |
| 275 | (application method, *args, **kwargs) |
| 276 | """ |
| 277 | self.ctx.clear() |
| 278 | self.ctx_index.clear() |
| 279 | self.ctx_columns.clear() |
| 280 | r = self |
| 281 | for func, args, kwargs in self._todo: |
| 282 | r = func(self)(*args, **kwargs) |
| 283 | return r |
| 284 | |
| 285 | def _translate( |
| 286 | self, |