turtle: TNavigator.degrees(0) raises ZeroDivisionError instead of a clear error
還沒有人認領這個 Issue。
- 主要語言
- Python
- 星號
- 77.2k
- 分支
- 36k
- PR 合併指標
- PR 指標待擷取
描述
Bug report
turtle.TNavigator.degrees(fullcircle) — the public Turtle.degrees / turtle.degrees — divides
360 / fullcircle in _setDegreesPerAU without checking fullcircle, so passing 0 raises a
ZeroDivisionError that leaks the implementation rather than reporting the invalid argument:
>>> import turtle
>>> turtle.TNavigator().degrees(0)
Traceback (most recent call last):
...
ZeroDivisionError: division by zero
degrees documents fullcircle only as "a number", and 0 reaches the division directly through the
public API. It should raise a clear ValueError instead. The companion radians() passes math.tau,
so it is unaffected.
CPython versions tested on:
3.12, 3.14 (main)
Operating systems tested on:
Linux
Linked PRs
- gh-152038
貢獻指南
從這裡開始
- 先讀完整個 Issue,再讀專案的貢獻指南。
- 在 Issue 下留言說明你要接手 —— 這能避免兩個人做同樣的事。
- Fork 儲存庫,在一個分支上完成修改。
- 送出 Pull Request,並在描述裡引用這個 Issue 編號。
研究方向
從 turtle.TNavigator.degrees 和報告中描述的 _setDegreesPerAU 路徑開始,接著執行提供的 turtle.TNavigator().degrees(0) 重現。完成的標準是:透過公開的 degrees API 拒絕零,並明確拋出 ValueError 而不是 ZeroDivisionError;檢查配套的 radians() 行為仍不受影響。
由索引模型根據 Issue 內容生成。
評估
- 技術堆疊
- python
- 領域
- api
- Issue 類型
- 缺陷
- 難度
- 2/5
- 預估耗時
- 1-3 小時
- 活躍度
- 停滯
- 描述清晰度
- 描述清楚
- 新手友好度
- 30/100