(msg, *args, **kwargs)
| 2203 | root.warning(msg, *args, **kwargs) |
| 2204 | |
| 2205 | def warn(msg, *args, **kwargs): |
| 2206 | warnings.warn("The 'warn' function is deprecated, " |
| 2207 | "use 'warning' instead", DeprecationWarning, 2) |
| 2208 | warning(msg, *args, **kwargs) |
| 2209 | |
| 2210 | def info(msg, *args, **kwargs): |
| 2211 | """ |
searching dependent graphs…