diff options
author | Gregory P. Smith <greg@krypto.org> | 2018-10-18 01:10:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-18 01:10:46 (GMT) |
commit | 9d4712bc8f26bf1d7e626b53ab092fe030bcd68d (patch) | |
tree | 0abf304eaa61dbcebb810246bacabdd2b12962e0 /Misc/NEWS.d/next/Build | |
parent | 74a8b6ea7e0a8508b13a1c75ec9b91febd8b5557 (diff) | |
download | cpython-9d4712bc8f26bf1d7e626b53ab092fe030bcd68d.zip cpython-9d4712bc8f26bf1d7e626b53ab092fe030bcd68d.tar.gz cpython-9d4712bc8f26bf1d7e626b53ab092fe030bcd68d.tar.bz2 |
bpo-35011: Restore use of pyexpatns.h in libexpat (GH-9939)
Restores the use of pyexpatns.h to isolate our embedded copy of the expat C
library so that its symbols do not conflict at link or dynamic loading time
with an embedding application or other extension modules with their own
version of libexpat.
https://github.com/python/cpython/commit/5dc3f23b5fb0b510926012cb3732dae63cddea60#diff-3afaf7274c90ce1b7405f75ad825f545 inadvertently removed it when upgrading expat.
Diffstat (limited to 'Misc/NEWS.d/next/Build')
-rw-r--r-- | Misc/NEWS.d/next/Build/2018-10-17-17-38-57.bpo-35011.GgoPIC.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Build/2018-10-17-17-38-57.bpo-35011.GgoPIC.rst b/Misc/NEWS.d/next/Build/2018-10-17-17-38-57.bpo-35011.GgoPIC.rst new file mode 100644 index 0000000..4411ffe --- /dev/null +++ b/Misc/NEWS.d/next/Build/2018-10-17-17-38-57.bpo-35011.GgoPIC.rst @@ -0,0 +1,4 @@ +Restores the use of pyexpatns.h to isolate our embedded copy of the expat C +library so that its symbols do not conflict at link or dynamic loading time +with an embedding application or other extension modules with their own +version of libexpat. |