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

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

参考

参考サイト