diff options
author | Jeremy Paige <ucodery@gmail.com> | 2022-12-18 07:11:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-18 07:11:21 (GMT) |
commit | 1cf3d78c92eb07dc09d15cc2e773b0b1b9436825 (patch) | |
tree | 950b24de0922810627b4574db3661184259aeb7f /Python/clinic/sysmodule.c.h | |
parent | 0fe61d0838218b18bcff4bf434beba3e8dbcc42b (diff) | |
download | cpython-1cf3d78c92eb07dc09d15cc2e773b0b1b9436825.zip cpython-1cf3d78c92eb07dc09d15cc2e773b0b1b9436825.tar.gz cpython-1cf3d78c92eb07dc09d15cc2e773b0b1b9436825.tar.bz2 |
Correct CVE-2020-10735 documentation (#100306)
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 5678d0a..03eeda8 100644 --- a/Python/clinic/sysmodule.c.h +++ b/Python/clinic/sysmodule.c.h @@ -749,7 +749,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__}, @@ -1318,4 +1318,4 @@ sys_is_stack_trampoline_active(PyObject *module, PyObject *Py_UNUSED(ignored)) #ifndef SYS_GETANDROIDAPILEVEL_METHODDEF #define SYS_GETANDROIDAPILEVEL_METHODDEF #endif /* !defined(SYS_GETANDROIDAPILEVEL_METHODDEF) */ -/*[clinic end generated code: output=79228e569529129c input=a9049054013a1b77]*/ +/*[clinic end generated code: output=b32b444538dfd354 input=a9049054013a1b77]*/ |