[3.11] gh-100776: Fix misleading default value in help(input) (GH-100788) (#100841)

(cherry picked from commit a2141882f2)

Co-authored-by: Shantanu <12621235+hauntsaninja@users.noreply.github.com>
This commit is contained in:
Shantanu 2023-01-08 01:23:12 -08:00 committed by GitHub
parent 87076d880c
commit be7c19723f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 4 deletions

View file

@ -2065,7 +2065,7 @@ builtin_print_impl(PyObject *module, PyObject *args, PyObject *sep,
/*[clinic input]
input as builtin_input
prompt: object(c_default="NULL") = None
prompt: object(c_default="NULL") = ""
/
Read a string from standard input. The trailing newline is stripped.
@ -2079,7 +2079,7 @@ On *nix systems, readline is used if available.
static PyObject *
builtin_input_impl(PyObject *module, PyObject *prompt)
/*[clinic end generated code: output=83db5a191e7a0d60 input=5e8bb70c2908fe3c]*/
/*[clinic end generated code: output=83db5a191e7a0d60 input=159c46d4ae40977e]*/
{
PyThreadState *tstate = _PyThreadState_GET();
PyObject *fin = _PySys_GetAttr(