sys.monitoring in 3.13+ does not trigger LINE event when there is no line break before
還沒有人認領這個 Issue。
- 主要語言
- Python
- 星號
- 77.2k
- 分支
- 35.9k
- PR 合併指標
- PR 指標待擷取
描述
Bug report
Bug description:
In sys.monitoring there seems to be a regression from 3.13+ on where the LINE event does not fire for the first line of a code object if it is on the same line as the def /lambda statement. In Pyhton 3.12 it works. The bug disappears if on all versions if the PY_START event is added to the event mask.
Reproduction code:
import sys
print(f"Python {sys.version}")
TOOL = 1
sys.monitoring.use_tool_id(TOOL, "test")
hits = []
sys.monitoring.register_callback(TOOL, sys.monitoring.events.LINE,
lambda _code, line: hits.append(line))
# A: LINE event never fires in single-line function/lambda on 3.13+
def f(x): return x + 1 #<<<<<<<<<< LINE 12
#f = lambda x: x + 1 # same issue
sys.monitoring.set_local_events(TOOL, f.__code__, sys.monitoring.events.LINE)
f(0)
print(f"Example A: {hits}")
hits.clear()
# B: Adding PY_START makes the LINE fire (even though we have no callback registred for PY_START)
sys.monitoring.set_local_events(TOOL, f.__code__, sys.monitoring.events.LINE | sys.monitoring.events.PY_START)
f(0)
print(f"Example B: {hits}")
hits.clear()
# C: LINE fires but never for first line
def g(x): x = 0; x += 1; \
x += 2; return x #<<<<<<<<<< LNE 30
sys.monitoring.set_local_events(TOOL, g.__code__, sys.monitoring.events.LINE)
g(0)
print(f"Example C: {hits}")
The expected output would be as in Python 3.12, we get line events for line 12 and 29 even if PY_START (example B) is not set:
$ python3.12 cpython_issue_monitoring_line_event.py # Only one that fully works
Python 3.12.3 (main, Jun 19 2026, 12:46:00) [GCC 13.3.0]
Example A: [12]
Example B: [12]
Example C: [29, 30]
But the actual output from 3.13 on is missing the first lines:
$ python3.13 cpython_issue_monitoring_line_event.py
Python 3.13.15 (main, Aug 6 2026, 11:06:22) [GCC 13.3.0]
Example A: []
Example B: [12]
Example C: [30]
I.e., same with:
- Python 3.14.6 (main, Jun 11 2026, 12:32:48) [GCC 13.3.0]
- Python 3.15.0rc1 (main, Aug 5 2026, 11:04:42) [GCC 13.3.0]
CPython versions tested on:
3.12, 3.13, 3.14, 3.15
Operating systems tested on:
Linux
Linked PRs
- gh-155996
貢獻指南
從這裡開始
- 先讀完整個 Issue,再讀專案的貢獻指南。
- 在 Issue 下留言說明你要接手 —— 這能避免兩個人做同樣的事。
- Fork 儲存庫,在一個分支上完成修改。
- 送出 Pull Request,並在描述裡引用這個 Issue 編號。
研究方向
首先,在 Python 3.12 到 3.15 上執行所提供的重現,並比較範例 A、B 和 C 的 LINE 事件輸出。接著檢查 sys.monitoring 對 LINE 和 PY_START 事件的處理,以及關聯的 PR gh-155996。完成的標準是:第一行事件在不需要 PY_START 的情況下與預期輸出相符,並且為回報的案例提供回歸涵蓋。
由索引模型根據 Issue 內容生成。
評估
- 技術堆疊
- python
- 領域
- devtools
- Issue 類型
- 缺陷
- 難度
- 4/5
- 預估耗時
- 3-5 天
- 活躍度
- 停滯
- 描述清晰度
- 描述清楚
- 新手友好度
- 25/100