Apply 'Add stub for pipes' patch from Ben Longbons.

This commit is contained in:
Matthias Kramm
2015-10-12 08:34:26 -07:00
parent 8754806bbf
commit ebb3f51f7b
2 changed files with 22 additions and 0 deletions

View File

@@ -7,6 +7,9 @@ from typing import List, Tuple, Any, TextIO
def split(s: str, comments: bool = False,
posix: bool = True) -> List[str]: ...
# Added in 3.3, use (undocumented) pipes.quote in previous versions.
def quote(s: str) -> str: ...
class shlex:
commenters = ''
wordchars = ''