Shortcuts

Source code for asteroid.utils.deprecation_utils

import warnings


[docs]class VisibleDeprecationWarning(UserWarning): """Visible deprecation warning. By default, python will not show deprecation warnings, so this class can be used when a very visible warning is helpful, for example because the usage is most likely a user bug. """
# Taken from numpy
[docs]class DeprecationMixin: """ Deprecation mixin. Example to come """
[docs] def warn_deprecated(self): warnings.warn( "{} is deprecated since v0.1.0, it will be removed in " "v0.2.0. Please use {} instead." "".format(self.__class__.__name__, self.__class__.__bases__[0].__name__), VisibleDeprecationWarning, )
[docs]def deprecate_func(func, old_name): """ Function to return DeprecationWarning when a deprecated function is called. Example to come.""" def func_with_warning(*args, **kwargs): """ Deprecated function, please read your warnings. """ warnings.warn( "{} is deprecated since v0.1.0, it will be removed in " "v0.2.0. Please use {} instead." "".format(old_name, func.__name__), VisibleDeprecationWarning, ) return func(*args, **kwargs) return func_with_warning
Read the Docs v: v0.3.3
Versions
latest
stable
v0.3.3
v0.3.2
v0.3.1
Downloads
On Read the Docs
Project Home
Builds

Free document hosting provided by Read the Docs.