本文簡要介紹 python 語言中 numpy.deprecate
的用法。
用法:
numpy.deprecate(*args, **kwargs)
發出 DeprecationWarning,添加警告old_name的文檔字符串,重新綁定
old_name.__name__
並返回新的函數對象。這個函數也可以用作裝飾器。
- func: 函數
要棄用的函數。
- old_name: str,可選
要棄用的函數的名稱。默認為 None,在這種情況下使用 func 的名稱。
- new_name: str,可選
函數的新名稱。默認為無,在這種情況下,棄用消息是 old_name 已棄用。如果給出,則棄用消息是 old_name 已棄用,應改為使用 new_name。
- message: str,可選
棄用的附加說明。警告後顯示在文檔字符串中。
- old_func: 函數
已棄用的函數。
參數:
返回:
例子:
請注意,
olduint
在打印棄用警告後返回一個值:>>> olduint = np.deprecate(np.uint) DeprecationWarning: `uint64` is deprecated! # may vary >>> olduint(6) 6
相關用法
- Python numpy delete用法及代碼示例
- Python numpy dec.setastest用法及代碼示例
- Python numpy dec.slow用法及代碼示例
- Python numpy degrees用法及代碼示例
- Python numpy deg2rad用法及代碼示例
- Python numpy dtype.isbuiltin用法及代碼示例
- Python numpy dtype.shape用法及代碼示例
- Python numpy dtype.ndim用法及代碼示例
- Python numpy dtype.alignment用法及代碼示例
- Python numpy diagonal用法及代碼示例
- Python numpy dtype用法及代碼示例
- Python numpy dtype.names用法及代碼示例
- Python numpy dtype.__class_getitem__用法及代碼示例
- Python numpy divmod用法及代碼示例
- Python numpy dtype.flags用法及代碼示例
- Python numpy diagflat用法及代碼示例
- Python numpy dtype.fields用法及代碼示例
- Python numpy dtype.subdtype用法及代碼示例
- Python numpy dtype.descr用法及代碼示例
- Python numpy datetime_as_string用法及代碼示例
- Python numpy divide用法及代碼示例
- Python numpy dtype.kind用法及代碼示例
- Python numpy dtype.metadata用法及代碼示例
- Python numpy diag用法及代碼示例
- Python numpy dsplit用法及代碼示例
注:本文由純淨天空篩選整理自numpy.org大神的英文原創作品 numpy.deprecate。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。