(settings=None, **kwargs)
| 183 | |
| 184 | |
| 185 | def get_context(settings=None, **kwargs): |
| 186 | context = settings.copy() if settings else {} |
| 187 | context["generated_content"] = {} |
| 188 | context["static_links"] = set() |
| 189 | context["static_content"] = {} |
| 190 | context.update(kwargs) |
| 191 | return context |
| 192 | |
| 193 | |
| 194 | class LogCountHandler(BufferingHandler): |
no outgoing calls
searching dependent graphs…