INADA Naoki added the comment:

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.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue29585>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to