(self, msg, *args, **kwargs)
| 1535 | self._log(WARNING, msg, args, **kwargs) |
| 1536 | |
| 1537 | def warn(self, msg, *args, **kwargs): |
| 1538 | warnings.warn("The 'warn' method is deprecated, " |
| 1539 | "use 'warning' instead", DeprecationWarning, 2) |
| 1540 | self.warning(msg, *args, **kwargs) |
| 1541 | |
| 1542 | def error(self, msg, *args, **kwargs): |
| 1543 | """ |
no test coverage detected