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 methane
Recipients christian.heimes, eric.araujo, gregory.p.smith, lemburg, methane, ned.deily, vstinner
Date 2017-07-28.11:20:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1501240822.96.0.230468077193.issue29585@psf.upfronthosting.co.za>
In-reply-to
Content
https://github.com/python/cpython/pull/136/files

 -    if sys.platform == 'darwin':
 -        from sysconfig import get_config_var
 -        if get_config_var('PYTHONFRAMEWORK'):
 -            USER_SITE = get_path('purelib', 'osx_framework_user')
 -            return USER_SITE
 +    if USER_SITE is None:
 +        USER_SITE = _get_path(userbase)

OK, I need to use `osx_framework_user` instead of os.name + '_user' on framework build.
History
Date User Action Args
2017-07-28 11:20:22methanesetrecipients: + methane, lemburg, gregory.p.smith, vstinner, christian.heimes, ned.deily, eric.araujo
2017-07-28 11:20:22methanesetmessageid: <1501240822.96.0.230468077193.issue29585@psf.upfronthosting.co.za>
2017-07-28 11:20:22methanelinkissue29585 messages
2017-07-28 11:20:22methanecreate