[Python-checkins] peps: PEP 433: more typos

victor.stinner python-checkins at python.org
Thu Feb 14 02:23:16 CET 2013


http://hg.python.org/peps/rev/7c1d23e2ad11
changeset:   4738:7c1d23e2ad11
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Thu Feb 14 02:22:29 2013 +0100
summary:
  PEP 433: more typos

files:
  pep-0433.txt |  6 +++---
  1 files changed, 3 insertions(+), 3 deletions(-)


diff --git a/pep-0433.txt b/pep-0433.txt
--- a/pep-0433.txt
+++ b/pep-0433.txt
@@ -183,7 +183,7 @@
 ========
 
 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 @@
 
 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.

-- 
Repository URL: http://hg.python.org/peps


More information about the Python-checkins mailing list