summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2022-09-13 16:44:56 (GMT)
committerGitHub <noreply@github.com>2022-09-13 16:44:56 (GMT)
commit12c8a9edfd13ee53b1dc030e6d9543b73034064b (patch)
tree4b6425fc60393c7ef66ffa7d7253f8f93ba798ca
parent6726405ec30f7a5309ca4f5bbe32e0a7295171ab (diff)
downloadcpython-12c8a9edfd13ee53b1dc030e6d9543b73034064b.zip
cpython-12c8a9edfd13ee53b1dc030e6d9543b73034064b.tar.gz
cpython-12c8a9edfd13ee53b1dc030e6d9543b73034064b.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>
-rw-r--r--Doc/library/sys.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst
index 4d6db2c..aab3f6a 100644
--- a/Doc/library/sys.rst
+++ b/Doc/library/sys.rst
@@ -1331,7 +1331,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