From cc150f1d7638036da2d3dcb8fbd5a3180b035644 Mon Sep 17 00:00:00 2001 From: Shantanu <12621235+hauntsaninja@users.noreply.github.com> Date: Fri, 26 Jun 2020 03:46:18 -0700 Subject: [PATCH] compileall: update for py39 again (#4269) Co-authored-by: hauntsaninja <> --- stdlib/3/compileall.pyi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stdlib/3/compileall.pyi b/stdlib/3/compileall.pyi index 3be83d5cc..b0376bcd5 100644 --- a/stdlib/3/compileall.pyi +++ b/stdlib/3/compileall.pyi @@ -26,6 +26,7 @@ if sys.version_info >= (3, 9): stripdir: Optional[str] = ..., # TODO: change to Optional[AnyPath] once https://bugs.python.org/issue40447 is resolved prependdir: Optional[AnyPath] = ..., limit_sl_dest: Optional[AnyPath] = ..., + hardlink_dupes: bool = ..., ) -> _SuccessType: ... def compile_file( fullname: AnyPath, @@ -40,6 +41,7 @@ if sys.version_info >= (3, 9): stripdir: Optional[str] = ..., # TODO: change to Optional[AnyPath] once https://bugs.python.org/issue40447 is resolved prependdir: Optional[AnyPath] = ..., limit_sl_dest: Optional[AnyPath] = ..., + hardlink_dupes: bool = ..., ) -> _SuccessType: ... elif sys.version_info >= (3, 7): def compile_dir(