diff options
author | Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> | 2024-04-15 18:22:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-15 18:22:00 (GMT) |
commit | 3375282bb894347b73c11752f0797d90dadaf465 (patch) | |
tree | 1dfae89f14c8182dfbe053ea39b3b181bcc8c501 /Doc/whatsnew/3.7.rst | |
parent | 78da15406705f88ffa79dafac491fb93b373e8e9 (diff) | |
download | cpython-3375282bb894347b73c11752f0797d90dadaf465.zip cpython-3375282bb894347b73c11752f0797d90dadaf465.tar.gz cpython-3375282bb894347b73c11752f0797d90dadaf465.tar.bz2 |
Docs: add link roles with Sphinx extlinks (#117850)
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
Diffstat (limited to 'Doc/whatsnew/3.7.rst')
-rw-r--r-- | Doc/whatsnew/3.7.rst | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst index 8122e0e..ad7c8b5 100644 --- a/Doc/whatsnew/3.7.rst +++ b/Doc/whatsnew/3.7.rst @@ -2609,8 +2609,7 @@ Converting between :class:`int` and :class:`str` in bases other than 2 (binary), 4, 8 (octal), 16 (hexadecimal), or 32 such as base 10 (decimal) now raises a :exc:`ValueError` if the number of digits in string form is above a limit to avoid potential denial of service attacks due to the -algorithmic complexity. This is a mitigation for `CVE-2020-10735 -<https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-10735>`_. +algorithmic complexity. This is a mitigation for :cve:`2020-10735`. This limit can be configured or disabled by environment variable, command line flag, or :mod:`sys` APIs. See the :ref:`integer string conversion length limitation <int_max_str_digits>` documentation. The default limit |