当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python matplotlib delete_parameter用法及代码示例


本文简要介绍 python 语言中 matplotlib._api.deprecation.delete_parameter 的用法。

用法

matplotlib._api.deprecation.delete_parameter(since, name, func=None, **kwargs)

指示 func 的参数 name 正在被弃用的装饰器。

func 的实际实现应在其签名中保留 name 参数,或接受 **kwargs 参数(将通过该参数传递 name)。

不推荐使用的参数之后的参数实际上变成了仅关键字(因为它们不能在不触发不推荐使用的参数的 DeprecationWarning 的情况下按位置传递),并且应该在已过弃用期并删除不推荐使用的参数后进行标记。

sincenamefunc 之外的参数仅是关键字,并转发到 warn_deprecated

例子

@_api.delete_parameter("3.1", "unused")
def func(used_arg, other_arg, unused, more_args): ...

相关用法


注:本文由纯净天空筛选整理自skytowner.com大神的英文原创作品 matplotlib._api.deprecation.delete_parameter。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。