[issue12103] Document how to use open with os.O_CLOEXEC

2013-01-03 Thread Christian Heimes
Christian Heimes added the comment: Sounds good to me. -- nosy: +christian.heimes resolution: -> out of date status: open -> closed ___ Python tracker ___ __

[issue12103] Document how to use open with os.O_CLOEXEC

2013-01-03 Thread STINNER Victor
STINNER Victor added the comment: > x Open the file exclusively (like the O_EXCL flag of open(2)). > If the file already exists, fopen() fails, and sets errno to EEXIST. > This flag is ignored for fdopen(). Python 3.3 adds support for this mode: see issue #12760. > e (since glibc 2.7) >

[issue12103] Document how to use open with os.O_CLOEXEC

2011-11-12 Thread Éric Araujo
Changes by Éric Araujo : -- keywords: +easy nosy: +eric.araujo title: Documentation of open() does not claim 'e' support in mode string -> Document how to use open with os.O_CLOEXEC versions: +Python 3.3 -Python 2.7 ___ Python tracker