From 8ae8d5045bcc4b80850d22fc4191dc36552d4e5b Mon Sep 17 00:00:00 2001 From: Timothy Crosley Date: Mon, 26 Jul 2021 22:55:16 -0700 Subject: Revert "Fixed #1785: module incorrectly excluded from stdlib definition." This reverts commit 754b55a4b7ab14f98aa0ec308d176a0265885d03. --- scripts/mkstdlibs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/mkstdlibs.py b/scripts/mkstdlibs.py index cf523798..ee08ba1d 100755 --- a/scripts/mkstdlibs.py +++ b/scripts/mkstdlibs.py @@ -31,7 +31,7 @@ for version_info in VERSIONS: invdata = fetch_inventory(FakeApp(), "", url) # Any modules we want to enforce across Python versions stdlib can be included in set init - modules = {"_ast", "posixpath", "ntpath", "sre_constants", "sre_parse", "sre_compile", "sre"} + modules = {"posixpath", "ntpath", "sre_constants", "sre_parse", "sre_compile", "sre"} for module in invdata["py:module"]: root, *_ = module.split(".") if root not in ["__future__", "__main__"]: -- cgit v1.2.1