Add stub for pathlib2.Path.__div__ (#2507)

This commit is contained in:
Daniel Li
2018-10-16 01:31:58 -04:00
committed by Sebastian Rittau
parent e5713d2942
commit 254af0ff2a
2 changed files with 4 additions and 0 deletions

View File

@@ -31,6 +31,8 @@ class PurePath(_PurePathBase):
def __gt__(self, other: PurePath) -> bool: ...
def __ge__(self, other: PurePath) -> bool: ...
def __truediv__(self: _P, key: Union[str, PurePath]) -> _P: ...
if sys.version_info < (3,):
def __div__(self: _P, key: Union[str, PurePath]) -> _P: ...
def __bytes__(self) -> bytes: ...
def as_posix(self) -> str: ...
def as_uri(self) -> str: ...