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 vstinner
Date 2016-08-24.09:59:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1472032743.47.0.741950542758.issue27847@psf.upfronthosting.co.za>
In-reply-to
Content
Hum, the main difference between Python 3.5 and 3.6 is this optimization:

changeset:   101039:d268f108ba80
user:        Victor Stinner <victor.stinner@gmail.com>
date:        Sun Apr 17 16:51:52 2016 +0200
files:       Python/fileutils.c
description:
Avoid fcntl() if possible in set_inheritable()

Issue #26770: set_inheritable() avoids calling fcntl() twice if the FD_CLOEXEC
is already set/cleared. This change only impacts platforms using the fcntl()
implementation of set_inheritable() (not Linux nor Windows).
History
Date User Action Args
2016-08-24 09:59:03vstinnersetrecipients: + vstinner
2016-08-24 09:59:03vstinnersetmessageid: <1472032743.47.0.741950542758.issue27847@psf.upfronthosting.co.za>
2016-08-24 09:59:03vstinnerlinkissue27847 messages
2016-08-24 09:59:02vstinnercreate