I'm using Sphinx to document a python 3 class, and some of the methods in the class have parameter values that are no longer used. What's the best way of marking these as deprecated parameters? There is online documentation referring to marking entire methods as deprecated, but nothing I have found for methods that continue to be active but whose parameters have changed. It may help in my case that these parameters are marked as keyword only.
Added: I'm declaring the parameters like this:
Some function description
:param bool param_a: If True, do something.
:param bool param_b: Deprecated since 0.2.4 - how should I mark this?
:return: An integer.
:rtype: int