From 8cf9eb4561a10a5f426b86a365d1d892d6d63c33 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Thu, 14 Feb 2013 02:22:29 +0100 Subject: [PATCH] PEP 433: more typos --- pep-0433.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pep-0433.txt b/pep-0433.txt index 6ba74c086..d80bc740d 100644 --- a/pep-0433.txt +++ b/pep-0433.txt @@ -183,7 +183,7 @@ Proposal ======== Add a new optional *cloexec* parameter on functions creating file -descriptors and different ways to change default values of this +descriptors and different ways to change default value of this parameter. Add new functions: @@ -257,11 +257,11 @@ Inheritance enabled by default, default no configurable Add a new optional parameter *cloexec* on functions creating file descriptors. The default value of the *cloexec* parameter is ``False``, -and this default cannot be changed. No file descriptor inheritance by +and this default cannot be changed. File descriptor inheritance enabled by default is also the default on POSIX and on Windows. This alternative is the most convervative option. -This option does solve issues listed in the `Rationale`_ +This option does not solve issues listed in the `Rationale`_ section, it only provides an helper to fix them. All functions creating file descriptors have to be modified to set *cloexec=True* in each module used by an application to fix all these issues.