(self, *args, **kwargs)
| 5622 | |
| 5623 | class MyRequestHandler(SimpleHTTPRequestHandler): |
| 5624 | def __init__(self, *args, **kwargs): |
| 5625 | super().__init__(*args, directory='subdir', **kwargs) |
| 5626 | |
| 5627 | # Add COOP, COEP, CORP, and no-caching headers |
| 5628 | def end_headers(self): |
nothing calls this directly
no outgoing calls
no test coverage detected