Clarify that libpython3.so is only meant for use in
applications.
This commit is contained in:
parent
50db897f49
commit
ccff4c88ca
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue