-
Notifications
You must be signed in to change notification settings - Fork 105
Add stubs for typing #232
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Add stubs for typing #232
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[flake8] | ||
max-line-length = 120 | ||
per-file-ignores = | ||
**/*.pyi:E252,E301,E302,E305,E501,E701,E704,F401,F811,F821 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
.cache/ | ||
.tox/ | ||
__pycache__/ | ||
.mypy_cache/ | ||
|
||
*.pyc | ||
*.pyo | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
from typing import Any | ||
|
||
# py allows to use e.g. py.path.local even without importing py.path. | ||
# So import implicitly. | ||
from . import error | ||
from . import iniconfig | ||
from . import path | ||
from . import io | ||
from . import xml | ||
|
||
__version__: str | ||
|
||
# Untyped modules below here. | ||
std: Any | ||
test: Any | ||
process: Any | ||
apipkg: Any | ||
code: Any | ||
builtin: Any | ||
log: Any |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,129 @@ | ||
from typing import Any, Callable, TypeVar | ||
|
||
_T = TypeVar('_T') | ||
|
||
def checked_call(func: Callable[..., _T], *args: Any, **kwargs: Any) -> _T: ... | ||
class Error(EnvironmentError): ... | ||
class EPERM(Error): ... | ||
class ENOENT(Error): ... | ||
class ESRCH(Error): ... | ||
class EINTR(Error): ... | ||
class EIO(Error): ... | ||
class ENXIO(Error): ... | ||
class E2BIG(Error): ... | ||
class ENOEXEC(Error): ... | ||
class EBADF(Error): ... | ||
class ECHILD(Error): ... | ||
class EAGAIN(Error): ... | ||
class ENOMEM(Error): ... | ||
class EACCES(Error): ... | ||
class EFAULT(Error): ... | ||
class ENOTBLK(Error): ... | ||
class EBUSY(Error): ... | ||
class EEXIST(Error): ... | ||
class EXDEV(Error): ... | ||
class ENODEV(Error): ... | ||
class ENOTDIR(Error): ... | ||
class EISDIR(Error): ... | ||
class EINVAL(Error): ... | ||
class ENFILE(Error): ... | ||
class EMFILE(Error): ... | ||
class ENOTTY(Error): ... | ||
class ETXTBSY(Error): ... | ||
class EFBIG(Error): ... | ||
class ENOSPC(Error): ... | ||
class ESPIPE(Error): ... | ||
class EROFS(Error): ... | ||
class EMLINK(Error): ... | ||
class EPIPE(Error): ... | ||
class EDOM(Error): ... | ||
class ERANGE(Error): ... | ||
class EDEADLCK(Error): ... | ||
class ENAMETOOLONG(Error): ... | ||
class ENOLCK(Error): ... | ||
class ENOSYS(Error): ... | ||
class ENOTEMPTY(Error): ... | ||
class ELOOP(Error): ... | ||
class EWOULDBLOCK(Error): ... | ||
class ENOMSG(Error): ... | ||
class EIDRM(Error): ... | ||
class ECHRNG(Error): ... | ||
class EL2NSYNC(Error): ... | ||
class EL3HLT(Error): ... | ||
class EL3RST(Error): ... | ||
class ELNRNG(Error): ... | ||
class EUNATCH(Error): ... | ||
class ENOCSI(Error): ... | ||
class EL2HLT(Error): ... | ||
class EBADE(Error): ... | ||
class EBADR(Error): ... | ||
class EXFULL(Error): ... | ||
class ENOANO(Error): ... | ||
class EBADRQC(Error): ... | ||
class EBADSLT(Error): ... | ||
class EDEADLOCK(Error): ... | ||
class EBFONT(Error): ... | ||
class ENOSTR(Error): ... | ||
class ENODATA(Error): ... | ||
class ETIME(Error): ... | ||
class ENOSR(Error): ... | ||
class ENONET(Error): ... | ||
class ENOPKG(Error): ... | ||
class EREMOTE(Error): ... | ||
class ENOLINK(Error): ... | ||
class EADV(Error): ... | ||
class ESRMNT(Error): ... | ||
class ECOMM(Error): ... | ||
class EPROTO(Error): ... | ||
class EMULTIHOP(Error): ... | ||
class EDOTDOT(Error): ... | ||
class EBADMSG(Error): ... | ||
class EOVERFLOW(Error): ... | ||
class ENOTUNIQ(Error): ... | ||
class EBADFD(Error): ... | ||
class EREMCHG(Error): ... | ||
class ELIBACC(Error): ... | ||
class ELIBBAD(Error): ... | ||
class ELIBSCN(Error): ... | ||
class ELIBMAX(Error): ... | ||
class ELIBEXEC(Error): ... | ||
class EILSEQ(Error): ... | ||
class ERESTART(Error): ... | ||
class ESTRPIPE(Error): ... | ||
class EUSERS(Error): ... | ||
class ENOTSOCK(Error): ... | ||
class EDESTADDRREQ(Error): ... | ||
class EMSGSIZE(Error): ... | ||
class EPROTOTYPE(Error): ... | ||
class ENOPROTOOPT(Error): ... | ||
class EPROTONOSUPPORT(Error): ... | ||
class ESOCKTNOSUPPORT(Error): ... | ||
class ENOTSUP(Error): ... | ||
class EOPNOTSUPP(Error): ... | ||
class EPFNOSUPPORT(Error): ... | ||
class EAFNOSUPPORT(Error): ... | ||
class EADDRINUSE(Error): ... | ||
class EADDRNOTAVAIL(Error): ... | ||
class ENETDOWN(Error): ... | ||
class ENETUNREACH(Error): ... | ||
class ENETRESET(Error): ... | ||
class ECONNABORTED(Error): ... | ||
class ECONNRESET(Error): ... | ||
class ENOBUFS(Error): ... | ||
class EISCONN(Error): ... | ||
class ENOTCONN(Error): ... | ||
class ESHUTDOWN(Error): ... | ||
class ETOOMANYREFS(Error): ... | ||
class ETIMEDOUT(Error): ... | ||
class ECONNREFUSED(Error): ... | ||
class EHOSTDOWN(Error): ... | ||
class EHOSTUNREACH(Error): ... | ||
class EALREADY(Error): ... | ||
class EINPROGRESS(Error): ... | ||
class ESTALE(Error): ... | ||
class EUCLEAN(Error): ... | ||
class ENOTNAM(Error): ... | ||
class ENAVAIL(Error): ... | ||
class EISNAM(Error): ... | ||
class EREMOTEIO(Error): ... | ||
class EDQUOT(Error): ... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
from typing import Callable, Iterator, Mapping, Optional, Tuple, TypeVar, Union | ||
from typing_extensions import Final | ||
|
||
_D = TypeVar('_D') | ||
_T = TypeVar('_T') | ||
|
||
class ParseError(Exception): | ||
path: Final[str] | ||
lineno: Final[int] | ||
msg: Final[str] | ||
def __init__(self, path: str, lineno: int, msg: str) -> None: ... | ||
|
||
class _SectionWrapper: | ||
config: Final[IniConfig] | ||
name: Final[str] | ||
def __init__(self, config: IniConfig, name: str) -> None: ... | ||
def __getitem__(self, key: str) -> Optional[str]: ... | ||
def __iter__(self) -> Iterator[str]: ... | ||
def get(self, key: str, default: _D = ..., convert: Callable[[Optional[str]], _T] = ...) -> Union[_T, _D]: ... | ||
def items(self) -> Iterator[Tuple[str, Optional[str]]]: ... | ||
def lineof(self, name: str) -> Optional[int]: ... | ||
|
||
class IniConfig: | ||
path: Final[str] | ||
sections: Final[Mapping[str, Mapping[str, Optional[str]]]] | ||
def __init__(self, path: str, data: Optional[str] = None): ... | ||
def __contains__(self, arg: str) -> bool: ... | ||
def __getitem__(self, name: str) -> _SectionWrapper: ... | ||
def __iter__(self) -> Iterator[_SectionWrapper]: ... | ||
def get(self, section: str, name: str, default: _D = ..., convert: Callable[[Optional[str]], _T] = ...) -> Union[_T, _D]: ... | ||
def lineof(self, section: str, name: Optional[str] = ...) -> Optional[int]: ... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
from io import StringIO as TextIO | ||
from io import BytesIO as BytesIO | ||
from typing import Any, AnyStr, Callable, Generic, IO, List, Optional, Text, Tuple, TypeVar, Union, overload | ||
from typing_extensions import Final | ||
import sys | ||
|
||
_T = TypeVar("_T") | ||
|
||
class FDCapture(Generic[AnyStr]): | ||
def __init__(self, targetfd: int, tmpfile: Optional[IO[AnyStr]] = ..., now: bool = ..., patchsys: bool = ...) -> None: ... | ||
def start(self) -> None: ... | ||
def done(self) -> IO[AnyStr]: ... | ||
def writeorg(self, data: AnyStr) -> None: ... | ||
|
||
class StdCaptureFD: | ||
def __init__( | ||
self, | ||
out: Union[bool, IO[str]] = ..., | ||
err: Union[bool, IO[str]] = ..., | ||
mixed: bool = ..., | ||
in_: bool = ..., | ||
patchsys: bool = ..., | ||
now: bool = ..., | ||
) -> None: ... | ||
@classmethod | ||
def call(cls, func: Callable[..., _T], *args: Any, **kwargs: Any) -> Tuple[_T, str, str]: ... | ||
def reset(self) -> Tuple[str, str]: ... | ||
def suspend(self) -> Tuple[str, str]: ... | ||
def startall(self) -> None: ... | ||
def resume(self) -> None: ... | ||
def done(self, save: bool = ...) -> Tuple[IO[str], IO[str]]: ... | ||
def readouterr(self) -> Tuple[str, str]: ... | ||
|
||
class StdCapture: | ||
def __init__( | ||
self, | ||
out: Union[bool, IO[str]] = ..., | ||
err: Union[bool, IO[str]] = ..., | ||
in_: bool = ..., | ||
mixed: bool = ..., | ||
now: bool = ..., | ||
) -> None: ... | ||
@classmethod | ||
def call(cls, func: Callable[..., _T], *args: Any, **kwargs: Any) -> Tuple[_T, str, str]: ... | ||
def reset(self) -> Tuple[str, str]: ... | ||
def suspend(self) -> Tuple[str, str]: ... | ||
def startall(self) -> None: ... | ||
def resume(self) -> None: ... | ||
def done(self, save: bool = ...) -> Tuple[IO[str], IO[str]]: ... | ||
def readouterr(self) -> Tuple[IO[str], IO[str]]: ... | ||
|
||
# XXX: The type here is not exactly right. If f is IO[bytes] and | ||
# encoding is not None, returns some weird hybrid, not exactly IO[bytes]. | ||
def dupfile( | ||
f: IO[AnyStr], | ||
mode: Optional[str] = ..., | ||
buffering: int = ..., | ||
raising: bool = ..., | ||
encoding: Optional[str] = ..., | ||
) -> IO[AnyStr]: ... | ||
def get_terminal_width() -> int: ... | ||
def ansi_print( | ||
text: Union[str, Text], | ||
esc: Union[Union[str, Text], Tuple[Union[str, Text], ...]], | ||
file: Optional[IO[Any]] = ..., | ||
newline: bool = ..., | ||
flush: bool = ..., | ||
) -> None: ... | ||
def saferepr(obj, maxsize: int = ...) -> str: ... | ||
|
||
class TerminalWriter: | ||
stringio: TextIO | ||
encoding: Final[str] | ||
hasmarkup: bool | ||
def __init__(self, file: Optional[IO[str]] = ..., stringio: bool = ..., encoding: Optional[str] = ...) -> None: ... | ||
@property | ||
def fullwidth(self) -> int: ... | ||
@fullwidth.setter | ||
def fullwidth(self, value: int) -> None: ... | ||
@property | ||
def chars_on_current_line(self) -> int: ... | ||
@property | ||
def width_of_current_line(self) -> int: ... | ||
def markup( | ||
self, | ||
text: str, | ||
*, | ||
black: int = ..., red: int = ..., green: int = ..., yellow: int = ..., blue: int = ..., purple: int = ..., | ||
cyan: int = ..., white: int = ..., Black: int = ..., Red: int = ..., Green: int = ..., Yellow: int = ..., | ||
Blue: int = ..., Purple: int = ..., Cyan: int = ..., White: int = ..., bold: int = ..., light: int = ..., | ||
blink: int = ..., invert: int = ..., | ||
) -> str: ... | ||
def sep( | ||
self, | ||
sepchar: str, | ||
title: Optional[str] = ..., | ||
fullwidth: Optional[int] = ..., | ||
*, | ||
black: int = ..., red: int = ..., green: int = ..., yellow: int = ..., blue: int = ..., purple: int = ..., | ||
cyan: int = ..., white: int = ..., Black: int = ..., Red: int = ..., Green: int = ..., Yellow: int = ..., | ||
Blue: int = ..., Purple: int = ..., Cyan: int = ..., White: int = ..., bold: int = ..., light: int = ..., | ||
blink: int = ..., invert: int = ..., | ||
) -> None: ... | ||
def write( | ||
self, | ||
msg: str, | ||
*, | ||
black: int = ..., red: int = ..., green: int = ..., yellow: int = ..., blue: int = ..., purple: int = ..., | ||
cyan: int = ..., white: int = ..., Black: int = ..., Red: int = ..., Green: int = ..., Yellow: int = ..., | ||
Blue: int = ..., Purple: int = ..., Cyan: int = ..., White: int = ..., bold: int = ..., light: int = ..., | ||
blink: int = ..., invert: int = ..., | ||
) -> None: ... | ||
def line( | ||
self, | ||
s: str = ..., | ||
*, | ||
black: int = ..., red: int = ..., green: int = ..., yellow: int = ..., blue: int = ..., purple: int = ..., | ||
cyan: int = ..., white: int = ..., Black: int = ..., Red: int = ..., Green: int = ..., Yellow: int = ..., | ||
Blue: int = ..., Purple: int = ..., Cyan: int = ..., White: int = ..., bold: int = ..., light: int = ..., | ||
blink: int = ..., invert: int = ..., | ||
) -> None: ... | ||
def reline( | ||
self, | ||
line: str, | ||
*, | ||
black: int = ..., red: int = ..., green: int = ..., yellow: int = ..., blue: int = ..., purple: int = ..., | ||
cyan: int = ..., white: int = ..., Black: int = ..., Red: int = ..., Green: int = ..., Yellow: int = ..., | ||
Blue: int = ..., Purple: int = ..., Cyan: int = ..., White: int = ..., bold: int = ..., light: int = ..., | ||
blink: int = ..., invert: int = ..., | ||
) -> None: ... |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.