Code object comparison could lead to monitoring issue
還沒有人認領這個 Issue。
- 主要語言
- Python
- 星號
- 77.2k
- 分支
- 35.9k
- PR 合併指標
- PR 指標待擷取
描述
Bug report
Bug description:
Currently we compare code objects with a lot of its features, but not the file it is defined in - that might make some sense because the two code objects are "equivalent" as long as all their features match. However, the two code objects could still be two different ones - for example, if they are two exact same functions defined in two different files (this is a real case for me and it took me a while to figure it out).
The problem is, code objects can be used as keys. When we have "equal but not the same" code objects, it could affect monitoring. We thought we were monitoring one code object while we are actually monitoring another one.
The code was like this:
@cache
def get_code_lineno(code):
...
return {code: [...]}
assert code1 == code2 # two code objects in two different files
for c, linenos in get_code_lineno(code1):
sys.monitoring.set_local_events(tool, c, E.LINE)
for c, linenos in get_code_lineno(code2):
# This does not instrument code2! This instruments code1 because of the cache!
sys.monitoring.set_local_events(tool, c, E.LINE)
Do we consider this an expected behavior? Should we just "live with it" as it's not that common? (Again, this is a real issue I had when I was working on a project).
@markshannon
CPython versions tested on:
3.12, CPython main branch, 3.13, 3.14
Operating systems tested on:
No response
貢獻指南
從這裡開始
- 先讀完整個 Issue,再讀專案的貢獻指南。
- 在 Issue 下留言說明你要接手 —— 這能避免兩個人做同樣的事。
- Fork 儲存庫,在一個分支上完成修改。
- 送出 Pull Request,並在描述裡引用這個 Issue 編號。
研究方向
該報告沒有提到來源檔案或測試。首先,使用來自不同檔案的等效程式碼物件重現快取查找,然後檢查程式碼物件比較以及 sys.monitoring.set_local_events 進入點。在回歸測試能夠驗證監控不會針對錯誤的程式碼物件之前,必須先決定預期行為。
由索引模型根據 Issue 內容生成。
評估
- 技術堆疊
- python
- 領域
- devtools
- Issue 類型
- 缺陷
- 難度
- 4/5
- 預估耗時
- 3-5 天
- 活躍度
- 停滯
- 描述清晰度
- 需要釐清
- 新手友好度
- 30/100