Returns True if this message is a Request of one of the specified types.
(self, *command)
| 485 | return event == () or self.event in event |
| 486 | |
| 487 | def is_request(self, *command): |
| 488 | """Returns True if this message is a Request of one of the specified types.""" |
| 489 | if not isinstance(self, Request): |
| 490 | return False |
| 491 | return command == () or self.command in command |
| 492 | |
| 493 | def is_response(self, *command): |
| 494 | """Returns True if this message is a Response to a request of one of the |
no outgoing calls
no test coverage detected