diff options
author | Victor Stinner <vstinner@redhat.com> | 2019-05-11 02:10:03 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-11 02:10:03 (GMT) |
commit | 4ebcd7e2980d650c711d21b93447af39a8604554 (patch) | |
tree | 9307ad30b4e441a9c3e77ebf4b9b5d6a3cad6364 /Doc/whatsnew | |
parent | 960bb883769e5c64a63b014590d75654db87ffb0 (diff) | |
download | cpython-4ebcd7e2980d650c711d21b93447af39a8604554.zip cpython-4ebcd7e2980d650c711d21b93447af39a8604554.tar.gz cpython-4ebcd7e2980d650c711d21b93447af39a8604554.tar.bz2 |
bpo-21536: Update What's New in Python 3.8 entry (GH-13242)
Android still links to libpython.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.8.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst index 6bb0342..58b2321 100644 --- a/Doc/whatsnew/3.8.rst +++ b/Doc/whatsnew/3.8.rst @@ -138,7 +138,8 @@ environment variable, can be set using the new ``./configure --with-trace-refs`` build option. (Contributed by Victor Stinner in :issue:`36465`.) -On Unix, C extensions are no longer linked to libpython. It is now possible +On Unix, C extensions are no longer linked to libpython except on Android. +It is now possible for a statically linked Python to load a C extension built using a shared library Python. (Contributed by Victor Stinner in :issue:`21536`.) |