Pure Python `SimpleQueue.get()` raises `ValueError` when block is false and timeout is given
未關閉
還沒有人認領這個 Issue。
stdlib
type-bug
- 主要語言
- Python
- 星號
- 77.2k
- 分支
- 36k
- PR 合併指標
- PR 指標待擷取
描述
The docs for SimpleQueue.get() say that timeout is ignored when block is false. The C version does that, but the pure Python version passes timeout to threading.Semaphore.acquire() and fails:
>>> from queue import _PySimpleQueue
>>> _PySimpleQueue().get(block=False, timeout=1)
Traceback (most recent call last):
...
ValueError: can't specify timeout for non-blocking acquire
The C version raises Empty here.
A PR is on the way.
Linked PRs
- gh-156477
- gh-156487
- gh-156488
- gh-156489
貢獻指南
從這裡開始
- 先讀完整個 Issue,再讀專案的貢獻指南。
- 在 Issue 下留言說明你要接手 —— 這能避免兩個人做同樣的事。
- Fork 儲存庫,在一個分支上完成修改。
- 送出 Pull Request,並在描述裡引用這個 Issue 編號。
研究方向
從純 Python 的 _PySimpleQueue.get() 實作開始,將其對 block=False 和 timeout 的處理與 C 版本及 SimpleQueue 文件進行比較。當提供 timeout 的非阻塞 get 遵循文件所述行為並引發 Empty 而不是 ValueError 時,即表示完成;檢查 issue 中顯示的現有行為。
由索引模型根據 Issue 內容生成。
評估
- 技術堆疊
- python
- 領域
- backend
- Issue 類型
- 缺陷
- 難度
- 2/5
- 預估耗時
- 1-3 小時
- 活躍度
- 停滯
- 描述清晰度
- 描述清楚
- 新手友好度
- 25/100