[issue34278] Documentation: os.waitid and os.WNOHANG

2021-06-24 Thread Irit Katriel
Irit Katriel added the comment: See also issue41825, issue38802, issue27808. -- components: +Library (Lib) nosy: +iritkatriel ___ Python tracker ___ __

[issue34278] Documentation: os.waitid and os.WNOHANG

2018-07-30 Thread crzbear
New submission from crzbear : 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 -- ass