massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / coc-python-data / languageServer.0.5.59 / Typeshed / stdlib / 3 / pipes.pyi
1 # Stubs for pipes\r
2 \r
3 # Based on http://docs.python.org/3.5/library/pipes.html\r
4 \r
5 import os\r
6 \r
7 class Template:\r
8     def __init__(self) -> None: ...\r
9     def reset(self) -> None: ...\r
10     def clone(self) -> 'Template': ...\r
11     def debug(self, flag: bool) -> None: ...\r
12     def append(self, cmd: str, kind: str) -> None: ...\r
13     def prepend(self, cmd: str, kind: str) -> None: ...\r
14     def open(self, file: str, rw: str) -> os._wrap_close: ...\r
15     def copy(self, file: str, rw: str) -> os._wrap_close: ...\r
16 \r
17 # Not documented, but widely used.\r
18 # Documented as shlex.quote since 3.3.\r
19 def quote(s: str) -> str: ...\r