(self, status, msg="")
| 187 | self.directory = os.getcwd() |
| 188 | |
| 189 | def send_response(self, status, msg=""): |
| 190 | # the int(status) call is needed because in Py3 status is an enum.IntEnum and we need the integer behind |
| 191 | self.status = str(int(status)) + " " + msg |
| 192 | |
| 193 | def send_header(self, name, value): |
| 194 | self.headers.append((name, value)) |
no outgoing calls
no test coverage detected