(self, msg="")
| 185 | self._file.write("#" * cnt + "\n") |
| 186 | |
| 187 | def comment(self, msg=""): |
| 188 | if not isinstance(msg, str): |
| 189 | try: |
| 190 | for m in msg: |
| 191 | self._file.write(f"# {msg}\n") |
| 192 | return |
| 193 | except TypeError: |
| 194 | pass |
| 195 | self._file.write(f"# {msg}\n") |
| 196 | |
| 197 | def comment_verbose(self, msg=""): |
| 198 | if self._verbose: |
no outgoing calls
no test coverage detected