diff options
author | Gregory P. Smith <greg@krypto.org> | 2023-01-20 22:20:32 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-20 22:20:32 (GMT) |
commit | cf71e19297de5e94d534832f179f585c1a1570bb (patch) | |
tree | 039cbb76c618ca5fedfc4eb88b3abe9c0cac3687 /Python/clinic/sysmodule.c.h | |
parent | 5ef90eebfd90147c7e774cd5335ad4fe69a7227c (diff) | |
download | cpython-cf71e19297de5e94d534832f179f585c1a1570bb.zip cpython-cf71e19297de5e94d534832f179f585c1a1570bb.tar.gz cpython-cf71e19297de5e94d534832f179f585c1a1570bb.tar.bz2 |
[3.9] Correct CVE-2020-10735 documentation (GH-100306). (#100697)
(cherry picked from commit 1cf3d78c92eb07dc09d15cc2e773b0b1b9436825)
(cherry picked from commit 88fe8d701af3316c8869ea18ea1c7acec6f68c04)
Co-authored-by: Jeremy Paige <ucodery@gmail.com>
Co-authored-by: Gregory P. Smith <greg@krypto.org>
Diffstat (limited to 'Python/clinic/sysmodule.c.h')
-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 4144408..bbb990c 100644 --- a/Python/clinic/sysmodule.c.h +++ b/Python/clinic/sysmodule.c.h @@ -671,7 +671,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__}, @@ -1028,4 +1028,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=401254a595859ac6 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=97a4176745dbbe79 input=a9049054013a1b77]*/ |