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 bsdphk
Recipients bsdphk
Date 2018-05-29.22:02:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1527631327.84.0.682650639539.issue33687@psf.upfronthosting.co.za>
In-reply-to
Content
Library file uu.py on at least 2.7 and 3.6 contains:

            try:
                os.path.chmod(out_file, mode)
            except AttributeError:
                pass

As far as I can tell, os.path.chmod does not exist, so this always raises AttributeError and becomes a no-op.

Is suspect the proper fix is to remove the ".path" ?
History
Date User Action Args
2018-05-29 22:02:07bsdphksetrecipients: + bsdphk
2018-05-29 22:02:07bsdphksetmessageid: <1527631327.84.0.682650639539.issue33687@psf.upfronthosting.co.za>
2018-05-29 22:02:07bsdphklinkissue33687 messages
2018-05-29 22:02:07bsdphkcreate