Issue the warning message `msg`.
(obj, msg, warning_category=FutureWarning)
| 31 | |
| 32 | |
| 33 | def warn_deprecated(obj, msg, warning_category=FutureWarning): |
| 34 | """ |
| 35 | Issue the warning message `msg`. |
| 36 | """ |
| 37 | warnings.warn(f"{obj}: {msg}", category=warning_category, stacklevel=2) |
| 38 | |
| 39 | |
| 40 | def deprecated( |
no outgoing calls
no test coverage detected
searching dependent graphs…