Verbose print (if enabled)
(self, s="")
| 1101 | self.sock.send(HTTP() / resp) |
| 1102 | |
| 1103 | def vprint(self, s=""): |
| 1104 | """ |
| 1105 | Verbose print (if enabled) |
| 1106 | """ |
| 1107 | if self.verb: |
| 1108 | if conf.interactive: |
| 1109 | log_interactive.info("> %s", s) |
| 1110 | else: |
| 1111 | print("> %s" % s) |
| 1112 | |
| 1113 | @ATMT.state(initial=1) |
| 1114 | def BEGIN(self): |
no outgoing calls
no test coverage detected