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