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