Write debugging output to sys.stderr.
(self, level, msg)
| 3015 | yield tarinfo |
| 3016 | |
| 3017 | def _dbg(self, level, msg): |
| 3018 | """Write debugging output to sys.stderr. |
| 3019 | """ |
| 3020 | if level <= self.debug: |
| 3021 | print(msg, file=sys.stderr) |
| 3022 | |
| 3023 | def __enter__(self): |
| 3024 | self._check() |
no outgoing calls
no test coverage detected