Skip to content

Commit 202e82a

Browse files
committed
Fix invalid document about readline
1 parent a12f7b7 commit 202e82a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

stdlib/builtin/builtin.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1188,8 +1188,7 @@ const input_doc = `input([prompt]) -> string
11881188
Read a string from standard input. The trailing newline is stripped.
11891189
The prompt string, if given, is printed to standard output without a
11901190
trailing newline before reading input.
1191-
If the user hits EOF (*nix: Ctrl-D, Windows: Ctrl-Z+Return), raise EOFError.
1192-
On *nix systems, GNU readline is used if enabled.`
1191+
If the user hits EOF (*nix: Ctrl-D, Windows: Ctrl-Z+Return), raise EOFError.`
11931192

11941193
func builtin_input(self py.Object, args py.Tuple) (py.Object, error) {
11951194
var prompt py.Object = py.None

0 commit comments

Comments
 (0)