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 methane
Date 2017-02-17.09:57:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1487325423.07.0.0763065668443.issue29585@psf.upfronthosting.co.za>
In-reply-to
Content
site.py uses sysconfig (and sysconfigdata, _osx_support) module for user-site package.

But sysconfig module is not so lightweight, and very rarely used.
Actually speaking, only tests and distutils uses sysconfig in stdlibs.

And it takes about 7% of startup time, only for searching user-site path.

I tried to port minimal subset of sysconfig into site.py (GH-136).
But 'PYTHONFRAMEWORK' is only in sysconfigdata.  So I couldn't get rid sysconfig dependency completely.

How can I do to solve this?

a) Drop "osx_framework_user" (`~/Library/Python/3.7/`) support completely.
b) Add "sys._osx_framework" attribute
c) Create minimal sysconfigdata only for site.py
d) anything else?
History
Date User Action Args
2017-02-17 09:57:03methanesetrecipients: + methane
2017-02-17 09:57:03methanesetmessageid: <1487325423.07.0.0763065668443.issue29585@psf.upfronthosting.co.za>
2017-02-17 09:57:02methanelinkissue29585 messages
2017-02-17 09:57:02methanecreate