On Sun, Nov 10, 2013 at 7:16 PM, Tobias Burnus wrote:
> Janne Blomqvist wrote:
>>
>> the attached patch sets the close-on-exec flag when opening files, as
>> is usually considered good practice these days. See e.g.
>> http://www.python.org/dev/peps/pep-0446/ and links therein for more
>> informat
Janne Blomqvist wrote:
the attached patch sets the close-on-exec flag when opening files, as
is usually considered good practice these days. See e.g.
http://www.python.org/dev/peps/pep-0446/ and links therein for more
information.
+ int flags = O_RDWR|O_CREAT|O_EXCL;
I'd add spaces around "
PING
On Wed, Oct 30, 2013 at 1:39 AM, Janne Blomqvist
wrote:
> Hello,
>
> the attached patch sets the close-on-exec flag when opening files, as
> is usually considered good practice these days. See e.g.
> http://www.python.org/dev/peps/pep-0446/ and links therein for more
> information.
>
> The p