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