(s)
| 105 | s.sendheaders() |
| 106 | |
| 107 | def do_OPTIONS(s): |
| 108 | s.sendheaders([("Access-Control-Allow-Headers", "Range")], 0) |
| 109 | |
| 110 | def do_GET(s): |
| 111 | # CORS preflight makes OPTIONS requests which we need to account for. |
nothing calls this directly
no test coverage detected