mirror of
https://github.com/github/octodns.git
synced 2024-05-11 05:55:00 +00:00
10 lines
135 B
Python
10 lines
135 B
Python
#
|
|
#
|
|
#
|
|
|
|
from warnings import warn
|
|
|
|
|
|
def deprecated(message, stacklevel=2):
|
|
warn(message, DeprecationWarning, stacklevel=stacklevel)
|