From: Gregory P. Smith Date: Sun, 1 Jun 2014 20:46:36 +0000 (-0700) Subject: Fix the comment to not refer to the removed end_fd parameter. X-Git-Tag: v3.4.2rc1~469 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a26987a0a56d0eab5bab0e5d805d85aa7901a92c;p=python Fix the comment to not refer to the removed end_fd parameter. --- diff --git a/Modules/_posixsubprocess.c b/Modules/_posixsubprocess.c index 8f5ce04362..f84cd26e8d 100644 --- a/Modules/_posixsubprocess.c +++ b/Modules/_posixsubprocess.c @@ -234,8 +234,8 @@ struct linux_dirent64 { char d_name[256]; /* Filename (null-terminated) */ }; -/* Close all open file descriptors in the range start_fd inclusive to end_fd - * exclusive. Do not close any in the sorted py_fds_to_keep list. +/* Close all open file descriptors in the range from start_fd and higher + * Do not close any in the sorted py_fds_to_keep list. * * This version is async signal safe as it does not make any unsafe C library * calls, malloc calls or handle any locks. It is _unfortunate_ to be forced