https://github.com/python/cpython/commit/e66424a4e6ffb7125cc093cb6c267df14c06f1ef commit: e66424a4e6ffb7125cc093cb6c267df14c06f1ef branch: main author: Hugo van Kemenade <[email protected]> committer: hugovk <[email protected]> date: 2026-09-18T13:05:31+03:00 summary:
gh-115119: Fix licence page after removing bundled copy of libmpdec (#157686) Co-authored-by: Stan Ulbrych <[email protected]> files: M Doc/license.rst diff --git a/Doc/license.rst b/Doc/license.rst index 47c4fa9d582de3..41e5ce4e3b668d 100644 --- a/Doc/license.rst +++ b/Doc/license.rst @@ -960,10 +960,11 @@ libmpdec -------- The :mod:`!_decimal` C extension underlying the :mod:`decimal` module -is built using an included copy of the libmpdec -library unless the build is configured ``--with-system-libmpdec``:: +uses the libmpdec library if made available by the operating system. +Additionally, the Windows and macOS installers for Python include a copy +of the libmpdec library, so we include a copy of the libmpdec license here:: - Copyright (c) 2008-2020 Stefan Krah. All rights reserved. + Copyright (c) 2008-2024 Stefan Krah. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
