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 vstinner
Recipients legerf, vstinner
Date 2008-12-08.22:27:55
SpamBayes Score 2.1358942e-06
Marked as misclassified No
Message-id <1228775277.62.0.584765745509.issue4601@psf.upfronthosting.co.za>
In-reply-to
Content
install() method of the install_lib command 
(Lib/distutils/command/install_lib.py) calls self.copy_tree() which 
calls copy_tree() from Lib/distutils/dir_util.py. By default, this 
function preserve the modes (perserve_mode=1 by default). Or the build 
created a directory with permissions "drwx------".

I wrote that only lib-dynload directory has a problem. But other files 
are install with permissions -rw-------:
 - .../lib/python?.?/*.{pyc,pyo}
 - .../lib/python?.?/lib2to3/PatternGrammar*.pickle
 - .../lib/python?.?/lib2to3/Grammar*.pickle
 - .../lib/python?.?/lib-dynload/Python*.egg-info
History
Date User Action Args
2008-12-08 22:27:57vstinnersetrecipients: + vstinner, legerf
2008-12-08 22:27:57vstinnersetmessageid: <1228775277.62.0.584765745509.issue4601@psf.upfronthosting.co.za>
2008-12-08 22:27:56vstinnerlinkissue4601 messages
2008-12-08 22:27:55vstinnercreate