This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Documentation: os.waitid and os.WNOHANG
Type: Stage:
Components: Documentation, Library (Lib) Versions: Python 3.6
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: docs@python Nosy List: crzbear, docs@python, iritkatriel
Priority: normal Keywords:

Created on 2018-07-30 09:02 by crzbear, last changed 2022-04-11 14:59 by admin.

Messages (2)
msg322660 - (view) Author: (crzbear) Date: 2018-07-30 09:02
os.waitid states that  None  is returned
if WNOHANG was specified and no children are in a waitable state

os.WNOHANG states that the return value in this case would be  (0, 0)  


Python 3.6.5 returns None, so the latter probably needs to be changed
msg396518 - (view) Author: Irit Katriel (iritkatriel) * (Python committer) Date: 2021-06-24 23:46
See also issue41825, issue38802, issue27808.
History
Date User Action Args
2022-04-11 14:59:04adminsetgithub: 78459
2021-06-24 23:46:30iritkatrielsetnosy: + iritkatriel
messages: + msg396518
components: + Library (Lib)
2018-07-30 09:02:57crzbearcreate