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 Anthony Sottile
Recipients Anthony Sottile, doko, lukasz.langa, miss-islington, skrah
Date 2020-06-29.15:12:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1593443524.29.0.684567415578.issue40874@roundup.psfhosted.org>
In-reply-to
Content
> Otherwise, why use the system libmpdec at all and not the version
shipped with Python?

the packages are faithful reproductions of upstream packages, deviating from those introduces surprises for downstreams


> If I install into a venv, I also don't use the system libmpdec.

that's simply not true:

$ python3.9 -m venv vvv
$ vvv/bin/python -c 'import _decimal, subprocess; subprocess.check_call(("ldd", _decimal.__file__))'
	linux-vdso.so.1 (0x00007fff429ec000)
	libmpdec.so.2 => /lib/x86_64-linux-gnu/libmpdec.so.2 (0x00007fcaeae03000)
	libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0 (0x00007fcaeade0000)
	libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007fcaeabee000)
	libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007fcaeaa9f000)
	/lib64/ld-linux-x86-64.so.2 (0x00007fcaeae7f000)
History
Date User Action Args
2020-06-29 15:12:04Anthony Sottilesetrecipients: + Anthony Sottile, doko, skrah, lukasz.langa, miss-islington
2020-06-29 15:12:04Anthony Sottilesetmessageid: <1593443524.29.0.684567415578.issue40874@roundup.psfhosted.org>
2020-06-29 15:12:04Anthony Sottilelinkissue40874 messages
2020-06-29 15:12:04Anthony Sottilecreate