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 jdemeyer
Recipients brett.cannon, eric.snow, erik.bray, jdemeyer, ncoghlan, paul.moore, petr.viktorin, sth
Date 2018-08-04.18:52:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1533408775.28.0.56676864532.issue32797@psf.upfronthosting.co.za>
In-reply-to
Content
> In my view (and that of the documentation for sys.path), sys.path is where you put things that the Python interpreter can load - .so files, .pyc files and .py files.

It's quite typical for packages to install stuff in site-packages which the interpreter cannot load. In fact, that's the exactly the point of the package_data argument to setup(), see https://packaging.python.org/guides/distributing-packages-using-setuptools/#package-data

Just as an example, Numpy installs tons of stuff inside site-packages/numpy/ (header files, configuration files, data files for the testsuite)
History
Date User Action Args
2018-08-04 18:52:55jdemeyersetrecipients: + jdemeyer, brett.cannon, paul.moore, ncoghlan, petr.viktorin, erik.bray, eric.snow, sth
2018-08-04 18:52:55jdemeyersetmessageid: <1533408775.28.0.56676864532.issue32797@psf.upfronthosting.co.za>
2018-08-04 18:52:55jdemeyerlinkissue32797 messages
2018-08-04 18:52:55jdemeyercreate