DHI / DHI/python-package-development

Deprecations

オープン
#26 コメント 0 件 リアクション 1 件 担当者 0 名 GitHub で見る
主要言語
Jupyter Notebook
スター
8
フォーク
1
平均マージ
4分
マージ済み PR(30日)
1

説明

![Image](https://github.com/user-attachments/assets/7c66a9c7-b65f-4a05-9607-4ef111061f93)

https://docs.python.org/3/library/warnings.html#warnings.deprecated
*Added in version 3.13: See [PEP 702](https://peps.python.org/pep-0702/).*

```python
from warnings import deprecated

@deprecated("Use the new way instead")
def the_old_way():
print("God dag!")

def main():
print("Hello from foo!")

if __name__ == "__main__":
main()
the_old_way()
```

```bash
$ uv run mypy main.py --enable-error-code=deprecated
main.py:15: error: function main.the_old_way is deprecated: Use the new way instead [deprecated]
Found 1 error in 1 file (checked 1 source file)
```

コントリビューションガイド

このリポジトリのコントリビューションガイドは索引されていません

評価

この issue はまだ評価されていません。

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。