]> granicus.if.org Git - python/commitdiff
Fix the comment to not refer to the removed end_fd parameter.
authorGregory P. Smith <greg@krypto.org>
Sun, 1 Jun 2014 20:46:36 +0000 (13:46 -0700)
committerGregory P. Smith <greg@krypto.org>
Sun, 1 Jun 2014 20:46:36 +0000 (13:46 -0700)
Modules/_posixsubprocess.c

index 8f5ce043624e06a4a90d324a42ba0325184ca7ec..f84cd26e8d9961e65bfe04521980ad5b8458e9c5 100644 (file)
@@ -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