This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author neologix
Recipients neologix, python-dev, vstinner
Date 2013-08-28.05:44:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1377668644.58.0.202306021653.issue18571@psf.upfronthosting.co.za>
In-reply-to
Content
14.1 --- a/Lib/multiprocessing/util.py
    14.2 +++ b/Lib/multiprocessing/util.py

   14.13  #
   14.14  # Return pipe with CLOEXEC set on fds
   14.15  #
   14.16 +# Deprecated: os.pipe() creates non-inheritable file descriptors
   14.17 +# since Python 3.4
   14.18 +#
   14.19  
   14.20  def pipe():
   14.21 -    import _posixsubprocess
   14.22 -    return _posixsubprocess.cloexec_pipe()
   14.23 +    return os.pipe()

I guess you could remove util.pipe() altogether: it wasn't part of the public API.
History
Date User Action Args
2013-08-28 05:44:04neologixsetrecipients: + neologix, vstinner, python-dev
2013-08-28 05:44:04neologixsetmessageid: <1377668644.58.0.202306021653.issue18571@psf.upfronthosting.co.za>
2013-08-28 05:44:04neologixlinkissue18571 messages
2013-08-28 05:44:04neologixcreate