add stub for path.normjoin

This commit is contained in:
Prodesire 2018-03-19 12:03:16 +08:00
parent 25df88abe9
commit 2bf3f1e729
1 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,6 @@
from typing import ContextManager
from typing import ContextManager, List
def cd(path: str) -> ContextManager[None]: ...
def is_super_path(path1: str, path2: str) -> bool: ...
def normjoin(path: str, *paths: List(str)) -> str: ...