delete_parameter(since, name, func=None, **kwargs)
The actual implementation of func should keep the name parameter in its signature, or accept a **kwargs
argument (through which name would be passed).
Parameters that come after the deprecated parameter effectively become keyword-only (as they cannot be passed positionally without triggering the DeprecationWarning on the deprecated parameter), and should be marked as such after the deprecation period has passed and the deprecated parameter is removed.
Parameters other than since, name, and func are keyword-only and forwarded to :None:None:`.warn_deprecated`
.
Decorator indicating that parameter name of func is being deprecated.
See :@_api.delete_parameter("3.1", "unused") def func(used_arg, other_arg, unused, more_args): ...
Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.
Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)
SVG is more flexible but power hungry; and does not scale well to 50 + nodes.
All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them