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 eric.araujo
Recipients alexis, ceder, eric.araujo, fdrake, higery, mhammond, tarek, tim.golden, vinay.sajip
Date 2011-07-23.09:40:35
SpamBayes Score 0.00010303887
Marked as misclassified No
Message-id <1311414036.5.0.993654123567.issue12394@psf.upfronthosting.co.za>
In-reply-to
Content
Same bug.  I’ve added debug prints to find out the rights (UNIX permission system) of the files, and they’re very strange: --wxrw--wt (the read bit is missing, and the t is strange).  It should be -rwxr-xr-x, like other programs.

The bug is likely this change:
-                os.chmod(target, 0755)
+                os.chmod(target, 755)

An octal literal in 3.x is 0o755.  Decimal 755 means 0o1363, which is not good :)

I’ll let you check the Python docs and Wikipedia if you don’t know these rxw or octal codes.
History
Date User Action Args
2011-07-23 09:40:36eric.araujosetrecipients: + eric.araujo, mhammond, fdrake, vinay.sajip, ceder, tim.golden, tarek, alexis, higery
2011-07-23 09:40:36eric.araujosetmessageid: <1311414036.5.0.993654123567.issue12394@psf.upfronthosting.co.za>
2011-07-23 09:40:35eric.araujolinkissue12394 messages
2011-07-23 09:40:35eric.araujocreate