From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Tue, 13 Sep 2022 16:45:18 +0000 (-0700) Subject: gh-95778: Fix `sys.set_int_max_str_digits()` parameter name (GH-96798) X-Git-Tag: v3.10.8~132 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7528e2c06c8baf809b56f406bcc50e8436c9647c;p=thirdparty%2FPython%2Fcpython.git 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 --- diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index 55214cfa714a..b39ba5ff7fe6 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 ` used by this interpreter. See also