本文简要介绍 python 语言中 matplotlib._api.deprecation.delete_parameter
的用法。
-
指示
func
的参数name
正在被弃用的装饰器。func
的实际实现应在其签名中保留name
参数,或接受**kwargs
参数(将通过该参数传递name
)。不推荐使用的参数之后的参数实际上变成了仅关键字(因为它们不能在不触发不推荐使用的参数的 DeprecationWarning 的情况下按位置传递),并且应该在已过弃用期并删除不推荐使用的参数后进行标记。
since
、name
和func
之外的参数仅是关键字,并转发到warn_deprecated
。例子
@_api.delete_parameter("3.1", "unused") def func(used_arg, other_arg, unused, more_args): ...
用法
matplotlib._api.deprecation.delete_parameter(since, name, func=None, **kwargs)
相关用法
- Python matplotlib define_aliases用法及代码示例
- Python matplotlib deprecated用法及代码示例
- Python matplotlib deprecate_privatize_attribute用法及代码示例
- Python matplotlib disconnect用法及代码示例
- Python matplotlib axvspan用法及代码示例
- Python matplotlib Axes.get_legend_handles_labels用法及代码示例
- Python matplotlib AbstractMovieWriter用法及代码示例
- Python matplotlib triplot用法及代码示例
- Python matplotlib StarPolygonCollection.set_hatch用法及代码示例
- Python matplotlib Axes.hist用法及代码示例
- Python matplotlib boxplot用法及代码示例
- Python matplotlib subplots用法及代码示例
- Python matplotlib InsetPosition用法及代码示例
- Python matplotlib ToolManager.toolmanager_disconnect用法及代码示例
- Python matplotlib Figure.set_size_inches用法及代码示例
- Python matplotlib figlegend用法及代码示例
- Python matplotlib Axes.step用法及代码示例
- Python matplotlib Axes.contour用法及代码示例
- Python matplotlib LassoSelector用法及代码示例
- Python matplotlib BrokenBarHCollection.set_hatch用法及代码示例
- Python matplotlib Axes.plot用法及代码示例
- Python matplotlib Axes.semilogx用法及代码示例
- Python matplotlib Axes.semilogy用法及代码示例
- Python matplotlib MovieWriterRegistry.register用法及代码示例
- Python matplotlib PolyQuadMesh.set_hatch用法及代码示例
注:本文由纯净天空筛选整理自skytowner.com大神的英文原创作品 matplotlib._api.deprecation.delete_parameter。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。