(self, msg, *args, **kwargs)
| 1855 | self.log(WARNING, msg, *args, **kwargs) |
| 1856 | |
| 1857 | def warn(self, msg, *args, **kwargs): |
| 1858 | warnings.warn("The 'warn' method is deprecated, " |
| 1859 | "use 'warning' instead", DeprecationWarning, 2) |
| 1860 | self.warning(msg, *args, **kwargs) |
| 1861 | |
| 1862 | def error(self, msg, *args, **kwargs): |
| 1863 | """ |