Clarify the diffrence between object.__sizeof__() and sys.getsizeof() in short documentation/help output
還沒有人認領這個 Issue。
- 主要語言
- Python
- 星號
- 77.2k
- 分支
- 35.9k
- PR 合併指標
- PR 指標待擷取
描述
Documentation
Problem
The short documentation shown by help()/pydoc makes object.__sizeof__() and sys.getsizeof() look almost equivalent, even though they may return different values in practice.
For example, their short descriptions currently read very similarly:
sys.getsizeof():Return the size of object in bytes.
object.__sizeof__():"Size of object in memory, in bytes."
From these short descriptions, a user can reasonably assume that both functions report the same value.
Why this is confusing
In practice, they can differ.
sys.getsizeof() may return a larger value than obj.__sizeof__(), because it is not just a direct alias for __sizeof__(). The full documentation for sys.getsizeof() explains the extra behavior, but that distinction is not obvious from the short help output.
This makes the following kind of session surprising:
import sys
class A:
pass
obj = A()
print(obj.__sizeof__())
print(sys.getsizeof(obj))
A user who relies on help() or short docstrings may expect the first two values to match, but they may not.
Suggestion
It may be helpful to clarify this distinction in the short documentation, so that it is visible without referring to the full documentation.
In particular, it could clarify that:
sys.getsizeof()may include additional overhead beyond the value returned by__sizeof__()
Linked PRs
- gh-146087
貢獻指南
從這裡開始
- 先讀完整個 Issue,再讀專案的貢獻指南。
- 在 Issue 下留言說明你要接手 —— 這能避免兩個人做同樣的事。
- Fork 儲存庫,在一個分支上完成修改。
- 送出 Pull Request,並在描述裡引用這個 Issue 編號。
研究方向
先比較 sys.getsizeof() 和 object.sizeof() 的簡短說明或 pydoc 輸出,接著檢視連結的 PR gh-146087,了解已在進行的工作。當簡短描述清楚區分 sys.getsizeof() 和 sizeof(),並說明可能包含額外開銷時,即表示完成。
由索引模型根據 Issue 內容生成。
評估
- 技術堆疊
- python
- 領域
- documentation
- Issue 類型
- 文件
- 難度
- 2/5
- 預估耗時
- 1-3 小時
- 活躍度
- 停滯
- 描述清晰度
- 基本清楚
- 新手友好度
- 25/100