Add tests for setting and deleting attributes defined in C
還沒有人認領這個 Issue。
- 主要語言
- Python
- 星號
- 77.2k
- 分支
- 36k
- PR 合併指標
- PR 指標待擷取
描述
CPython defines 375 attributes with PyMemberDef and PyGetSetDef (excluding the _test* modules), but the test suite never assigns to 187 of them and never deletes 332 of them.
Deletion in particular is almost untested, although it is a separate code path: the setter is called with NULL, and an implementation which does not expect this crashes or leaves the object in a broken state.
Three bugs found this way are gh-156099, gh-156100 and gh-156101; gh-152817 is another one.
The following PR adds writing and deleting tests for each writable attribute.
Linked PRs
- gh-156107
- gh-156184
- gh-156191
貢獻指南
從這裡開始
- 先讀完整個 Issue,再讀專案的貢獻指南。
- 在 Issue 下留言說明你要接手 —— 這能避免兩個人做同樣的事。
- Fork 儲存庫,在一個分支上完成修改。
- 送出 Pull Request,並在描述裡引用這個 Issue 編號。
研究方向
首先找出 CPython 中針對使用 PyMemberDef 和 PyGetSetDef 定義之屬性的測試涵蓋範圍。檢視目前如何指派及刪除可寫入屬性,然後利用已回報的缺口和現有測試涵蓋每個可寫入屬性。完成的標準是:所有可寫入屬性的指派和刪除都經過測試,且不會發生崩潰或物件損壞。
由索引模型根據 Issue 內容生成。
評估
- 技術堆疊
- c, python
- 領域
- testing-qa
- Issue 類型
- 功能
- 難度
- 4/5
- 預估耗時
- 3-5 天
- 活躍度
- 停滯
- 描述清晰度
- 基本清楚
- 新手友好度
- 20/100