本文简要介绍 python 语言中 matplotlib._api.deprecation.rename_parameter
的用法。
-
指示
func
的参数old
的装饰器重命名为new
。func
的实际实现应该使用new
,而不是old
。如果将old
传递给func
,则会发出 DeprecationWarning 并使用其值,即使new
也通过关键字传递(这是为了简化 pyplot 包装函数,它总是显式传递new
到轴方法)。如果new
也被传递但在位置上,则在参数绑定期间底层函数将引发 TypeError。例子
@_api.rename_parameter("3.1", "bad_name", "good_name") def func(good_name): ...
用法
matplotlib._api.deprecation.rename_parameter(since, old, new, func=None)
相关用法
- Python matplotlib register_cmap用法及代码示例
- Python matplotlib relativedelta用法及代码示例
- Python matplotlib rc用法及代码示例
- Python matplotlib rgrids用法及代码示例
- Python matplotlib rc_context用法及代码示例
- 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用法及代码示例
注:本文由纯净天空筛选整理自skytowner.com大神的英文原创作品 matplotlib._api.deprecation.rename_parameter。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。