nxtomomill.utils.io.deprecated_warning#

nxtomomill.utils.io.deprecated_warning(type_, name, reason=None, replacement=None, since_version=None, only_once=True, skip_backtrace_count=0)[source]#

Function to log a deprecation warning

Parameters
  • type (str) – Nature of the object to be deprecated: “Module”, “Function”, “Class” …

  • name – Object name.

  • reason (str) – Reason for deprecating this function (e.g. “feature no longer provided”,

  • replacement (str) – Name of replacement function (if the reason for deprecating was to rename the function)

  • since_version (str) – First silx version for which the function was deprecated (e.g. “0.5.0”).

  • only_once (bool) – If true, the deprecation warning will only be generated one time for each different call locations. Default is true.

  • skip_backtrace_count (int) – Amount of last backtrace to ignore when logging the backtrace