mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 12:44:28 +08:00
14 lines
453 B
Python
14 lines
453 B
Python
from typing import Any, IO
|
|
|
|
class Template:
|
|
def __init__(self) -> None: ...
|
|
def reset(self) -> None: ...
|
|
def clone(self) -> Template: ...
|
|
def debug(self, flag: bool) -> None: ...
|
|
def append(self, cmd: str, kind: str) -> None: ...
|
|
def prepend(self, cmd: str, kind: str) -> None: ...
|
|
def open(self, file: str, mode: str) -> IO[Any]: ...
|
|
def copy(self, infile: str, outfile: str) -> None: ...
|
|
|
|
def quote(s: str) -> str: ...
|