[issue28273] Make os.waitpid() option parameter optional.

2016-10-01 Thread Jaysinh shukla
Changes by Jaysinh shukla : Added file: http://bugs.python.org/file44916/os_waitpid_updated_codebase_2_jaysinh.diff ___ Python tracker ___ __

[issue28273] Make os.waitpid() option parameter optional.

2016-10-01 Thread Jaysinh shukla
Changes by Jaysinh shukla : Removed file: http://bugs.python.org/file44915/os_waitpid_updated_codebase_jaysinh.diff ___ Python tracker ___ __

[issue28273] Make os.waitpid() option parameter optional.

2016-10-01 Thread Jaysinh shukla
Jaysinh shukla added the comment: Removing the `options` default argument from all the call to os.waitpid. Note: This patch is based on [this patch](http://bugs.python.org/file44822/os_waitpid-optional_options.diff) submitted by StyXman. -- nosy: +jaysinh.shukla Added file: http://bu

[issue28273] Make os.waitpid() option parameter optional.

2016-09-25 Thread Marcos Dione
Changes by Marcos Dione : -- components: +Library (Lib) type: -> enhancement versions: +Python 3.7 ___ Python tracker ___ ___ Python-

[issue28273] Make os.waitpid() option parameter optional.

2016-09-25 Thread Marcos Dione
New submission from Marcos Dione: According to the documentation, the second parameter for os.waitpid(), called options, must be most of the time 0. So why not make it the default value? The attached patch implements the proposed change, which is API compatible with current usages of the funct