From: Alex Waygood Date: Tue, 13 Sep 2022 15:22:50 +0000 (+0100) Subject: gh-95778: Fix `sys.set_int_max_str_digits()` parameter name (#96798) X-Git-Tag: v3.12.0a1~420 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bf5fd492524f1b630a60c98eff8fe5fa66603b54;p=thirdparty%2FPython%2Fcpython.git gh-95778: Fix `sys.set_int_max_str_digits()` parameter name (#96798) Discovered in https://github.com/python/typeshed/pull/8733 --- diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index cc41b996d2da..c6be12c14b55 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 ` used by this interpreter. See also