From e7eeeeb20ccfa5ce87d1df344030f8b3e08da2e3 Mon Sep 17 00:00:00 2001 From: hauntsaninja <> Date: Wed, 29 Apr 2020 16:53:40 -0700 Subject: [PATCH 1/3] compileall: add stripdir, prependdir and limit_sl_dest --- stdlib/3/compileall.pyi | 40 ++++++++++++++++++++++++++++++++++++++-- 1 file changed, 38 insertions(+), 2 deletions(-) diff --git a/stdlib/3/compileall.pyi b/stdlib/3/compileall.pyi index 72f5d4cab2a7..ff488edad52b 100644 --- a/stdlib/3/compileall.pyi +++ b/stdlib/3/compileall.pyi @@ -13,6 +13,8 @@ else: if sys.version_info >= (3, 7): from py_compile import PycInvalidationMode + +if sys.version_info >= (3, 9): def compile_dir( dir: _Path, maxlevels: int = ..., @@ -24,6 +26,10 @@ if sys.version_info >= (3, 7): optimize: int = ..., workers: int = ..., invalidation_mode: Optional[PycInvalidationMode] = ..., + *, + stripdir: Optional[_Path] = ..., + prependdir: Optional[_Path] = ..., + limit_sl_dest: Optional[_Path] = ..., ) -> _SuccessType: ... def compile_file( fullname: _Path, @@ -34,11 +40,29 @@ if sys.version_info >= (3, 7): legacy: bool = ..., optimize: int = ..., invalidation_mode: Optional[PycInvalidationMode] = ..., + *, + stripdir: Optional[_Path] = ..., + prependdir: Optional[_Path] = ..., + limit_sl_dest: Optional[_Path] = ..., ) -> _SuccessType: ... - def compile_path( - skip_curdir: bool = ..., +elif sys.version_info >= (3, 7): + def compile_dir( + dir: _Path, maxlevels: int = ..., + ddir: Optional[_Path] = ..., + force: bool = ..., + rx: Optional[Pattern[Any]] = ..., + quiet: int = ..., + legacy: bool = ..., + optimize: int = ..., + workers: int = ..., + invalidation_mode: Optional[PycInvalidationMode] = ..., + ) -> _SuccessType: ... + def compile_file( + fullname: _Path, + ddir: Optional[_Path] = ..., force: bool = ..., + rx: Optional[Pattern[Any]] = ..., quiet: int = ..., legacy: bool = ..., optimize: int = ..., @@ -67,6 +91,18 @@ else: legacy: bool = ..., optimize: int = ..., ) -> _SuccessType: ... + +if sys.version_info >= (3, 7): + def compile_path( + skip_curdir: bool = ..., + maxlevels: int = ..., + force: bool = ..., + quiet: int = ..., + legacy: bool = ..., + optimize: int = ..., + invalidation_mode: Optional[PycInvalidationMode] = ..., + ) -> _SuccessType: ... +else: def compile_path( skip_curdir: bool = ..., maxlevels: int = ..., From e880264f0edc6f17eb913055639ad6085ee34ebc Mon Sep 17 00:00:00 2001 From: hauntsaninja <> Date: Wed, 29 Apr 2020 16:54:27 -0700 Subject: [PATCH 2/3] compileall: compile_dir's default value is now None --- stdlib/3/compileall.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/3/compileall.pyi b/stdlib/3/compileall.pyi index ff488edad52b..2261004e5495 100644 --- a/stdlib/3/compileall.pyi +++ b/stdlib/3/compileall.pyi @@ -17,7 +17,7 @@ if sys.version_info >= (3, 7): if sys.version_info >= (3, 9): def compile_dir( dir: _Path, - maxlevels: int = ..., + maxlevels: Optional[int] = ..., ddir: Optional[_Path] = ..., force: bool = ..., rx: Optional[Pattern[Any]] = ..., From 2f984d3744f1364ffd33a38d885a4c09b86bab62 Mon Sep 17 00:00:00 2001 From: hauntsaninja <> Date: Mon, 25 May 2020 16:05:10 -0700 Subject: [PATCH 3/3] compileall: update for current py39 (as of beta1) --- stdlib/3/compileall.pyi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stdlib/3/compileall.pyi b/stdlib/3/compileall.pyi index 2261004e5495..86b39b355d29 100644 --- a/stdlib/3/compileall.pyi +++ b/stdlib/3/compileall.pyi @@ -27,7 +27,7 @@ if sys.version_info >= (3, 9): workers: int = ..., invalidation_mode: Optional[PycInvalidationMode] = ..., *, - stripdir: Optional[_Path] = ..., + stripdir: Optional[str] = ..., # TODO: change to Optional[_Path] once https://bugs.python.org/issue40447 is resolved prependdir: Optional[_Path] = ..., limit_sl_dest: Optional[_Path] = ..., ) -> _SuccessType: ... @@ -41,7 +41,7 @@ if sys.version_info >= (3, 9): optimize: int = ..., invalidation_mode: Optional[PycInvalidationMode] = ..., *, - stripdir: Optional[_Path] = ..., + stripdir: Optional[str] = ..., # TODO: change to Optional[_Path] once https://bugs.python.org/issue40447 is resolved prependdir: Optional[_Path] = ..., limit_sl_dest: Optional[_Path] = ..., ) -> _SuccessType: ...