(self, **kw)
| 91 | content_manager = raw_data_manager |
| 92 | |
| 93 | def __init__(self, **kw): |
| 94 | # Ensure that each new instance gets a unique header factory |
| 95 | # (as opposed to clones, which share the factory). |
| 96 | if 'header_factory' not in kw: |
| 97 | object.__setattr__(self, 'header_factory', HeaderRegistry()) |
| 98 | super().__init__(**kw) |
| 99 | |
| 100 | def header_max_count(self, name): |
| 101 | """+ |
nothing calls this directly
no test coverage detected