From f42ebdfa617b8f35ade78df4ce0b9dc33912c69e Mon Sep 17 00:00:00 2001 From: Stephen Morton Date: Tue, 8 Oct 2024 21:48:44 -0700 Subject: [PATCH] make shlex.shlex Iterator (#12756) --- stdlib/shlex.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/shlex.pyi b/stdlib/shlex.pyi index daa8df439..1c2748378 100644 --- a/stdlib/shlex.pyi +++ b/stdlib/shlex.pyi @@ -27,7 +27,7 @@ def join(split_command: Iterable[str]) -> str: ... def quote(s: str) -> str: ... # TODO: Make generic over infile once PEP 696 is implemented. -class shlex(Iterable[str]): +class shlex: commenters: str wordchars: str whitespace: str