diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-09-13 16:45:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-13 16:45:18 (GMT) |
commit | 7528e2c06c8baf809b56f406bcc50e8436c9647c (patch) | |
tree | ee2dc0e52cb1b503a753935a6242266369aade87 /Doc/library | |
parent | d357f71f46f9a56285eb883ab9ce285647419474 (diff) | |
download | cpython-7528e2c06c8baf809b56f406bcc50e8436c9647c.zip cpython-7528e2c06c8baf809b56f406bcc50e8436c9647c.tar.gz cpython-7528e2c06c8baf809b56f406bcc50e8436c9647c.tar.bz2 |
gh-95778: Fix `sys.set_int_max_str_digits()` parameter name (GH-96798)
Discovered in https://github.com/python/typeshed/pull/8733
(cherry picked from commit bf5fd492524f1b630a60c98eff8fe5fa66603b54)
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/sys.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index 55214cf..b39ba5f 100644 --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -1278,7 +1278,7 @@ always available. .. availability:: Unix. -.. function:: set_int_max_str_digits(n) +.. function:: set_int_max_str_digits(maxdigits) Set the :ref:`integer string conversion length limitation <int_max_str_digits>` used by this interpreter. See also |