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 paul.moore
Recipients dholth, paul.moore, serhiy.storchaka, steve.dower
Date 2015-02-26.14:41:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1424961675.39.0.53585742167.issue23491@psf.upfronthosting.co.za>
In-reply-to
Content
Following on from that, the code to make an archive executable is currently

os.chmod(new_archive, os.stat(new_archive).st_mode | stat.S_IEXEC)

Should I use "... | stat.S_IXUSR | stat.S_IXGRP | stat.S_IXOTH"? If so, do I need to protect that with an "if not Windows" test? (I've tested the existing code and it does nothing on Windows, so I omitted the test at the moment). Is there any *other* way I should be making a file executable on Unix?

(Side note: Maybe there should be an os.make_executable(pathname) or similar that does the right thing in a cross-platform way?)
History
Date User Action Args
2015-02-26 14:41:15paul.mooresetrecipients: + paul.moore, dholth, serhiy.storchaka, steve.dower
2015-02-26 14:41:15paul.mooresetmessageid: <1424961675.39.0.53585742167.issue23491@psf.upfronthosting.co.za>
2015-02-26 14:41:15paul.moorelinkissue23491 messages
2015-02-26 14:41:15paul.moorecreate