From dc60710d95b79bad0d26b02dc74294b3d7761a4a Mon Sep 17 00:00:00 2001 From: Prodesire Date: Sat, 14 Apr 2018 20:09:31 +0800 Subject: [PATCH] add stub for path.fileext --- stubs/pydu/path.pyi | 1 + 1 file changed, 1 insertion(+) diff --git a/stubs/pydu/path.pyi b/stubs/pydu/path.pyi index 55b48b4..eaed726 100644 --- a/stubs/pydu/path.pyi +++ b/stubs/pydu/path.pyi @@ -5,3 +5,4 @@ def cd(path: str) -> ContextManager[None]: ... def is_super_path(path1: str, path2: str) -> bool: ... def normjoin(path: str, *paths: List(str)) -> str: ... def filename(path: str) -> str: ... +def fileexe(path: str) -> str: ...