Flattened keys of subcontexts.
(self)
| 98 | return True |
| 99 | |
| 100 | def keys(self): |
| 101 | """ |
| 102 | Flattened keys of subcontexts. |
| 103 | """ |
| 104 | return set(chain.from_iterable(d for subcontext in self for d in subcontext)) |
| 105 | |
| 106 | |
| 107 | def instrumented_test_render(self, context): |
no outgoing calls