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 amaury.forgeotdarc
Recipients amaury.forgeotdarc, donmez, mishok13
Date 2008-05-16.09:25:21
SpamBayes Score 0.06997671
Marked as misclassified No
Message-id <1210929932.02.0.753152638499.issue2890@psf.upfronthosting.co.za>
In-reply-to
Content
Platform-specific values are not a problem.
On win32 os.O_NOINHERIT == 128, and on linux os.O_EXCL has the same value.

Python just exposes the available #defines at the module level.
(btw, the posix module is also available on windows. It is named 'nt',
but it is really the same module)

And in posixmodule.c, There are already some "GNU extensions":
os.O_DIRECT, os.O_NOFOLLOW...
History
Date User Action Args
2008-05-16 09:25:33amaury.forgeotdarcsetspambayes_score: 0.0699767 -> 0.06997671
recipients: + amaury.forgeotdarc, donmez, mishok13
2008-05-16 09:25:33amaury.forgeotdarcsetspambayes_score: 0.0699767 -> 0.0699767
messageid: <1210929932.02.0.753152638499.issue2890@psf.upfronthosting.co.za>
2008-05-16 09:25:30amaury.forgeotdarclinkissue2890 messages
2008-05-16 09:25:29amaury.forgeotdarccreate