(self, msg, *args, **kwargs)
| 1917 | self.log(WARNING, msg, *args, **kwargs) |
| 1918 | |
| 1919 | def warn(self, msg, *args, **kwargs): |
| 1920 | warnings.warn("The 'warn' method is deprecated, " |
| 1921 | "use 'warning' instead", DeprecationWarning, 2) |
| 1922 | self.warning(msg, *args, **kwargs) |
| 1923 | |
| 1924 | def error(self, msg, *args, **kwargs): |
| 1925 | """ |