From 05a711ec27cd9cc0977252694319f4fc3adf79fa Mon Sep 17 00:00:00 2001 From: Michael Walter Date: Wed, 30 Dec 2015 21:59:56 +0100 Subject: [PATCH] Update shlex.pyi Type of `shlex.whitespace_split` is `bool`. --- stdlib/3/shlex.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/3/shlex.pyi b/stdlib/3/shlex.pyi index 16263dcb4..db99fc668 100644 --- a/stdlib/3/shlex.pyi +++ b/stdlib/3/shlex.pyi @@ -17,7 +17,7 @@ class shlex: escape = ... # type: str quotes = ... # type: str escapedquotes = ... # type: str - whitespace_split = ... # type: str + whitespace_split = ... # type: bool infile = ... # type: str instream = ... # type: TextIO source = ... # type: str