[Python-checkins] peps: FIx a changed link target.

brett.cannon python-checkins at python.org
Fri Jan 25 18:33:04 CET 2013


http://hg.python.org/peps/rev/dd7757bc7988
changeset:   4689:dd7757bc7988
user:        Brett Cannon <brett at python.org>
date:        Fri Jan 25 12:32:01 2013 -0500
summary:
  FIx a changed link target.

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


diff --git a/pep-0433.txt b/pep-0433.txt
--- a/pep-0433.txt
+++ b/pep-0433.txt
@@ -231,8 +231,8 @@
    functions would need it. For example, ``os.urandom()`` uses a
    temporary file on UNIX, but it calls a function of Windows API on
    Windows. Adding a ``cloexec`` parameter to ``os.urandom()`` would
-   not make sense. See `Set the close-on-exec flag by default`_ for an
-   incomplete list of functions creating file descriptors.
+   not make sense. See `Enable file descriptor inheritance by default`_
+   for an incomplete list of functions creating file descriptors.
  * Checking if a module creates file descriptors is difficult. For
    example, ``os.urandom()`` creates a file descriptor on UNIX to read
    ``/dev/urandom`` (and closes it at exit), whereas it is implemented
@@ -341,8 +341,8 @@
 is ``sys.getdefaultcloexec()``, instead of ``False``.
 
 When ``sys.setdefaultcloexec(True)`` is called to set close-on-exec by
-default, we have the same drawbacks than `Set the close-on-exec flag
-by default`_ alternative.
+default, we have the same drawbacks as the
+`Enable file descriptor inheritance by default`_ alternative.
 
 There are additionnal drawbacks of having two behaviours depending on
 ``sys.getdefaultcloexec()`` value:

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


More information about the Python-checkins mailing list