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 vstinner
Recipients docs@python, r.david.murray, vstinner
Date 2013-12-31.16:19:59
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <CAMpsgwZ1O1uUuXWEpZhxZuePBDuz-Cez-ZNPxKjGL-3nk_yU7w@mail.gmail.com>
In-reply-to <1388505494.08.0.643576998185.issue20100@psf.upfronthosting.co.za>
Content
Use os.set_inheritable(epoll.fileno(), True) to make the file descriptor
inheritable. You should find this info easily if you follow the link on
"non inheritable" in epoll documentation.

EPOLL_CLOEXEC becomes useless in Python 3.4. It is used internally by
default if available. Removing it would break existing code, it would be
harder to write code for python 3.4 and 3.3.

Just update the doc.
History
Date User Action Args
2013-12-31 16:20:00vstinnersetrecipients: + vstinner, r.david.murray, docs@python
2013-12-31 16:20:00vstinnerlinkissue20100 messages
2013-12-31 16:19:59vstinnercreate