Message299380
| 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. |
|