From cf7606a33b39f3e37f437e1ddd4a06c6172e02fc Mon Sep 17 00:00:00 2001 From: Tom Most Date: Mon, 28 Dec 2020 00:07:22 -0800 Subject: [PATCH] Add sys.getfilesystemencodeerrors from PEP 529 (#4864) --- stdlib/3/sys.pyi | 1 + 1 file changed, 1 insertion(+) diff --git a/stdlib/3/sys.pyi b/stdlib/3/sys.pyi index d7c9176d6..dde62de37 100644 --- a/stdlib/3/sys.pyi +++ b/stdlib/3/sys.pyi @@ -160,6 +160,7 @@ if sys.platform != "win32": def getdlopenflags() -> int: ... def getfilesystemencoding() -> str: ... +def getfilesystemencodeerrors() -> str: ... def getrefcount(__object: Any) -> int: ... def getrecursionlimit() -> int: ... @overload