Think Twice
IT技術メモ | Pythonのメモ
Created: 2025-01-10 / Updated: 2025-02-03

Pythonで非推奨を指定する(deprecated)


目次


概要


import

お勧め
Copy
from typing_extensions import deprecated
参考)古い書き方
Copy
from deprecated import deprecated

使用例

Copy
from typing_extensions import deprecated

@deprecated("新しい関数を使用してください")
def old_function():
    pass

参考

参考サイト