`logging.captureWarnings` and `warnings.catch_warnings` do not play well together
未關閉
還沒有人認領這個 Issue。
stdlib
type-bug
- 主要語言
- Python
- 星號
- 77.2k
- 分支
- 36k
- PR 合併指標
- PR 指標待擷取
描述
Bug report
Bug description:
When logging.captureWarnings(True) is called within a warnings.catch_warnings(record=True) context warnings emitted during the context are not recorded.
import logging, warnings
with warnings.catch_warnings(record=True) as rec:
logging.captureWarnings(True)
warnings.warn("foo")
assert len(rec) == 1 # fails since len(rec) == 0
one work-around for this is to enable captureWarnings outside the context
import logging, warnings
logging.captureWarnings(True)
with warnings.catch_warnings(record=True) as rec:
warnings.warn("foo")
assert len(rec) == 1
I tested the above examples on 3.10, 3.13 and 3.14.0b2.
However on 3.14.0b2 with PYTHON_CONTEXT_AWARE_WARNINGS=1 (to pull in the changes from https://github.com/python/cpython/pull/130010) the second example (enabling captureWarnings outside the catch_warnings) no longer works.
CPython versions tested on:
3.13
Operating systems tested on:
macOS
貢獻指南
從這裡開始
- 先讀完整個 Issue,再讀專案的貢獻指南。
- 在 Issue 下留言說明你要接手 —— 這能避免兩個人做同樣的事。
- Fork 儲存庫,在一個分支上完成修改。
- 送出 Pull Request,並在描述裡引用這個 Issue 編號。
研究方向
首先使用 logging.captureWarnings(True) 和 warnings.catch_warnings(record=True) 重現這些範例,包括 PYTHON_CONTEXT_AWARE_WARNINGS=1。追蹤這兩個 API 之間的互動,並驗證在情境中發出的警告是否會在報告所述的兩種組態中都被記錄。
由索引模型根據 Issue 內容生成。
評估
- 技術堆疊
- python
- 領域
- backend
- Issue 類型
- 缺陷
- 難度
- 4/5
- 預估耗時
- 3-5 天
- 活躍度
- 停滯
- 描述清晰度
- 基本清楚
- 新手友好度
- 45/100