Clarify that libpython3.so is only meant for use in

applications.
This commit is contained in:
Martin v. Löwis 2010-12-30 14:57:53 +00:00
parent 50db897f49
commit ccff4c88ca
1 changed files with 3 additions and 1 deletions

View File

@ -336,7 +336,9 @@ version if the extension module was compiled with Py_LIMITED_API; the
version check for the API version will accept either 3 or the current
PYTHON_API_VERSION as conforming. If Python is compiled as a shared
library, it is installed as both libpython3.so, and libpython3.y.so;
applications conforming to this PEP should then link to the former.
applications conforming to this PEP should then link to the former
(extension modules can continue to link with no libpython shared object,
but rather rely on runtime linking).
The ABI version is symbolically available as ``PYTHON_ABI_VERSION``.
Also on Unix, the PEP 3149 tag abi<PYTHON_ABI_VERSION> is accepted