IPythonで実行したコードに対して、DeprecationWarningを表示する方法
環境
- Python3.7
やりたいこと
IPython上でコードを実行したとき、DeprecationWarningを表示するようにしたいです。
実行時、警告に気づくようにするためです。
たとえば、以下のget_history
メソッドを実行したときです。
class SampleApi:
def get_history(self, history_id):
warnings.warn("deprecated", DeprecationWarning)
return history_id
どのような操作を行えば、IPythonで実行したときに警告が表示されるようになりますか?
私の環境では、DeprecationWarningが表示されませんでした。