From 040bbd2ec6d1675c718565824144d71caa88d383 Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Tue, 13 Sep 2022 09:44:56 -0700 Subject: [PATCH] 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> --- Doc/library/sys.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index 4d6db2cb1b7..aab3f6aa83f 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 -- GitLab