diff options
author | Gregory P. Smith <greg@krypto.org> | 2022-12-24 02:07:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-24 02:07:50 (GMT) |
commit | a852c5f8ee19f996335841a78b73549d7d4117c4 (patch) | |
tree | ed36acb46fd3e5aabe026baa1a00f04ea552f4a6 /Python/clinic | |
parent | 9477594374ba58bc00a95d99d0e2e22cccd02f5e (diff) | |
download | cpython-a852c5f8ee19f996335841a78b73549d7d4117c4.zip cpython-a852c5f8ee19f996335841a78b73549d7d4117c4.tar.gz cpython-a852c5f8ee19f996335841a78b73549d7d4117c4.tar.bz2 |
[3.11] Correct CVE-2020-10735 documentation (GH-100306). (#100476)
(cherry picked from commit 1cf3d78c92eb07dc09d15cc2e773b0b1b9436825)
Co-authored-by: Jeremy Paige <ucodery@gmail.com>
Diffstat (limited to 'Python/clinic')
-rw-r--r-- | Python/clinic/sysmodule.c.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/clinic/sysmodule.c.h b/Python/clinic/sysmodule.c.h index b3ecab5..8ca3cd0 100644 --- a/Python/clinic/sysmodule.c.h +++ b/Python/clinic/sysmodule.c.h @@ -673,7 +673,7 @@ PyDoc_STRVAR(sys_get_int_max_str_digits__doc__, "get_int_max_str_digits($module, /)\n" "--\n" "\n" -"Set the maximum string digits limit for non-binary int<->str conversions."); +"Return the maximum string digits limit for non-binary int<->str conversions."); #define SYS_GET_INT_MAX_STR_DIGITS_METHODDEF \ {"get_int_max_str_digits", (PyCFunction)sys_get_int_max_str_digits, METH_NOARGS, sys_get_int_max_str_digits__doc__}, @@ -1067,4 +1067,4 @@ sys_getandroidapilevel(PyObject *module, PyObject *Py_UNUSED(ignored)) #ifndef SYS_GETANDROIDAPILEVEL_METHODDEF #define SYS_GETANDROIDAPILEVEL_METHODDEF #endif /* !defined(SYS_GETANDROIDAPILEVEL_METHODDEF) */ -/*[clinic end generated code: output=21a32aa71d36a98c input=a9049054013a1b77]*/ +/*[clinic end generated code: output=3cae0e0212d88bcd input=a9049054013a1b77]*/ |