Add link to ABCMeta while at it.
.. versionadded:: 3.4
.. function:: update_abstractmethods(cls)
+
A function to recalculate an abstract class's abstraction status. This
function should be called if a class's abstract methods have been
implemented or changed after it was created. Usually, this function should
Returns *cls*, to allow usage as a class decorator.
- If *cls* is not an instance of ABCMeta, does nothing.
+ If *cls* is not an instance of :class:`ABCMeta`, does nothing.
.. note::