`sys.getsizeof()` does not include inline values
未關閉
還沒有人認領這個 Issue。
interpreter-core
type-bug
- 主要語言
- Python
- 星號
- 77.2k
- 分支
- 35.9k
- PR 合併指標
- PR 指標待擷取
描述
Bug report
Bug description:
Commit tested: 5e65a1acc0b
I have a program that allocates numerous instances of this type:
@dataclass
class Node:
cdr: Self | None
BIG_DATA = None
for i in range(50):
BIG_DATA = Node(BIG_DATA)
print(sys.getsizeof(BIG_DATA))
After the 28th iteration, I find that it stabilizes at printing 48. But if I run the program in GDB and trace the actual allocations, I see that it is allocating 80 bytes per iteration:
# Set a GDB-recognized breakpoint
os.kill(os.getpid(), signal.SIGTRAP)
# In GDB:
# b _PyObject_Malloc
# commands
# silent
# print nbytes
# continue
# end
for i in range(50):
BIG_DATA = Node(BIG_DATA)
I believe that the missing bytes can be accounted for in the inline values. I observe the same behavior on Python 3.13.
CPython versions tested on:
CPython main branch
Operating systems tested on:
Linux
Linked PRs
- gh-128763
貢獻指南
從這裡開始
- 先讀完整個 Issue,再讀專案的貢獻指南。
- 在 Issue 下留言說明你要接手 —— 這能避免兩個人做同樣的事。
- Fork 儲存庫,在一個分支上完成修改。
- 送出 Pull Request,並在描述裡引用這個 Issue 編號。
研究方向
從回報的 sys.getsizeof() 行為開始,重現 dataclass Node 範例,同時將其輸出與 GDB 中的 _PyObject_Malloc 追蹤進行比較。調查 inline 值如何計入;當回報的大小能反映範例所展示的配置,且不導致現有行為回歸時,即視為完成。
由索引模型根據 Issue 內容生成。
評估
- 技術堆疊
- python
- 領域
- backend, performance
- Issue 類型
- 缺陷
- 難度
- 4/5
- 預估耗時
- 3-5 天
- 活躍度
- 停滯
- 描述清晰度
- 基本清楚
- 新手友好度
- 25/100