Send NOOP command. (typ, [data]) = .noop()
(self)
| 779 | |
| 780 | |
| 781 | def noop(self): |
| 782 | """Send NOOP command. |
| 783 | |
| 784 | (typ, [data]) = <instance>.noop() |
| 785 | """ |
| 786 | if __debug__: |
| 787 | if self.debug >= 3: |
| 788 | self._dump_ur(self.untagged_responses) |
| 789 | return self._simple_command('NOOP') |
| 790 | |
| 791 | |
| 792 | def partial(self, message_num, message_part, start, length): |
no test coverage detected