diff options
author | Gregory P. Smith <greg@krypto.org> | 2022-09-19 23:43:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-19 23:43:11 (GMT) |
commit | 34de67c094776bdc719d87f8810e053a2acc915a (patch) | |
tree | 0ebe3124ad833068a2c859a9b08ac2cb62d065ec /Doc/library/sys.rst | |
parent | e61ca2243163d829ab04d91d8e67940ea850aefa (diff) | |
download | cpython-34de67c094776bdc719d87f8810e053a2acc915a.zip cpython-34de67c094776bdc719d87f8810e053a2acc915a.tar.gz cpython-34de67c094776bdc719d87f8810e053a2acc915a.tar.bz2 |
gh-96512: Update int_max_str docs to say 3.11 (#96942)
It was unknown if it'd be before 3.11.0 when creating the original
changes. It's in 3.11rc2, so 3.11 it is.
Diffstat (limited to 'Doc/library/sys.rst')
-rw-r--r-- | Doc/library/sys.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index c6be12c..aab3f6a 100644 --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -544,7 +544,7 @@ always available. .. versionchanged:: 3.11 Added the ``safe_path`` attribute for :option:`-P` option. - .. versionchanged:: 3.12 + .. versionchanged:: 3.11 Added the ``int_max_str_digits`` attribute. @@ -732,7 +732,7 @@ always available. Returns the current value for the :ref:`integer string conversion length limitation <int_max_str_digits>`. See also :func:`set_int_max_str_digits`. - .. versionadded:: 3.12 + .. versionadded:: 3.11 .. function:: getrefcount(object) @@ -1029,7 +1029,7 @@ always available. .. versionadded:: 3.1 - .. versionchanged:: 3.12 + .. versionchanged:: 3.11 Added ``default_max_str_digits`` and ``str_digits_check_threshold``. @@ -1337,7 +1337,7 @@ always available. <int_max_str_digits>` used by this interpreter. See also :func:`get_int_max_str_digits`. - .. versionadded:: 3.12 + .. versionadded:: 3.11 .. function:: setprofile(profilefunc) |