PEP 433: more typos

This commit is contained in:
Victor Stinner 2013-02-14 02:22:29 +01:00
parent f901a53dd9
commit 8cf9eb4561
1 changed files with 3 additions and 3 deletions

View File

@ -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.