(self)
| 1238 | |
| 1239 | @ATMT.state(error=1) |
| 1240 | def ERROR(self): |
| 1241 | self.send( |
| 1242 | HTTPResponse( |
| 1243 | Status_Code="400", |
| 1244 | Reason_Phrase="Bad Request", |
| 1245 | ) |
| 1246 | ) |
| 1247 | |
| 1248 | @ATMT.state(final=1) |
| 1249 | def CLOSED(self): |
nothing calls this directly
no test coverage detected