(self, msg, *args, **kwargs)
| 1501 | self._log(WARNING, msg, args, **kwargs) |
| 1502 | |
| 1503 | def warn(self, msg, *args, **kwargs): |
| 1504 | warnings.warn("The 'warn' method is deprecated, " |
| 1505 | "use 'warning' instead", DeprecationWarning, 2) |
| 1506 | self.warning(msg, *args, **kwargs) |
| 1507 | |
| 1508 | def error(self, msg, *args, **kwargs): |
| 1509 | """ |
no test coverage detected