LSSTApplications  20.0.0
LSSTDataManagementBasePackage
Functions
lsst.utils.deprecated Namespace Reference

Functions

def deprecate_pybind11 (obj, reason, category=FutureWarning)
 
def suppress_deprecations (category=FutureWarning)
 

Function Documentation

◆ deprecate_pybind11()

def lsst.utils.deprecated.deprecate_pybind11 (   obj,
  reason,
  category = FutureWarning 
)
Deprecate a pybind11-wrapped C++ interface function, method or class.

This needs to use a pass-through Python wrapper so that
`~deprecated.sphinx.deprecated` can update its docstring; pybind11
docstrings are native and cannot be modified.

Note that this is not a decorator; its output must be assigned to
replace the method being deprecated.

Parameters
----------
obj : function, method, or class
    The function, method, or class to deprecate.
reason : `str`
    Reason for deprecation, passed to `~deprecated.sphinx.deprecated`
category : `Warning`
    Warning category, passed to `~deprecated.sphinx.deprecated`

Returns
-------
obj : function, method, or class
    Wrapped function, method, or class

Examples
--------
.. code-block:: python

   ExposureF.getCalib = deprecate_pybind11(ExposureF.getCalib,
           reason="Replaced by getPhotoCalib. (Will be removed in 18.0)",
           category=FutureWarning))

Definition at line 32 of file deprecated.py.

32 def deprecate_pybind11(obj, reason, category=FutureWarning):
33  """Deprecate a pybind11-wrapped C++ interface function, method or class.
34 
35  This needs to use a pass-through Python wrapper so that
36  `~deprecated.sphinx.deprecated` can update its docstring; pybind11
37  docstrings are native and cannot be modified.
38 
39  Note that this is not a decorator; its output must be assigned to
40  replace the method being deprecated.
41 
42  Parameters
43  ----------
44  obj : function, method, or class
45  The function, method, or class to deprecate.
46  reason : `str`
47  Reason for deprecation, passed to `~deprecated.sphinx.deprecated`
48  category : `Warning`
49  Warning category, passed to `~deprecated.sphinx.deprecated`
50 
51  Returns
52  -------
53  obj : function, method, or class
54  Wrapped function, method, or class
55 
56  Examples
57  --------
58  .. code-block:: python
59 
60  ExposureF.getCalib = deprecate_pybind11(ExposureF.getCalib,
61  reason="Replaced by getPhotoCalib. (Will be removed in 18.0)",
62  category=FutureWarning))
63  """
64 
65  @functools.wraps(obj)
66  def internal(*args, **kwargs):
67  return obj(*args, **kwargs)
68 
69  return deprecated.sphinx.deprecated(reason=reason, category=category)(internal)
70 
71 
72 @contextmanager

◆ suppress_deprecations()

def lsst.utils.deprecated.suppress_deprecations (   category = FutureWarning)
Suppress warnings generated by `deprecated.sphinx.deprecated`.

Naively, one might attempt to suppress these warnings by using
`~warnings.catch_warnings`. However, `~deprecated.sphinx.deprecated`
attempts to install its own filter, overriding that. This convenience
method works around this and properly suppresses the warnings by providing
a mock `~warnings.simplefilter` for `~deprecated.sphinx.deprecated` to
call.

Parameters
----------
category : `Warning` or subclass
    The category of warning to suppress.

Definition at line 73 of file deprecated.py.

73 def suppress_deprecations(category=FutureWarning):
74  """Suppress warnings generated by `deprecated.sphinx.deprecated`.
75 
76  Naively, one might attempt to suppress these warnings by using
77  `~warnings.catch_warnings`. However, `~deprecated.sphinx.deprecated`
78  attempts to install its own filter, overriding that. This convenience
79  method works around this and properly suppresses the warnings by providing
80  a mock `~warnings.simplefilter` for `~deprecated.sphinx.deprecated` to
81  call.
82 
83  Parameters
84  ----------
85  category : `Warning` or subclass
86  The category of warning to suppress.
87  """
88  with warnings.catch_warnings():
89  warnings.simplefilter("ignore", category)
90  with unittest.mock.patch.object(warnings, "simplefilter"):
91  yield
lsst::utils.deprecated.suppress_deprecations
def suppress_deprecations(category=FutureWarning)
Definition: deprecated.py:73
lsst::utils.deprecated.deprecate_pybind11
def deprecate_pybind11(obj, reason, category=FutureWarning)
Definition: deprecated.py:32