From 21085835dafd6bb0db2454f68662608ce9f98f7d Mon Sep 17 00:00:00 2001 From: aparnajyothi-y <147696841+aparnajyothi-y@users.noreply.github.com> Date: Tue, 2 Jul 2024 17:59:19 +0530 Subject: [PATCH] Update python-modules.py --- tests/sources/python-modules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/sources/python-modules.py b/tests/sources/python-modules.py index c45ac8e..84ddd7f 100644 --- a/tests/sources/python-modules.py +++ b/tests/sources/python-modules.py @@ -313,7 +313,7 @@ def check_missing_modules(expected_modules): # Exclude tkinter for Python 3.8 and above if sys.version_info >= (3, 8): - excluded_modules.append('_tkinter') + excluded_modules.extend(['_tkinter', '_curses', '_curses_panel') missing_modules = check_missing_modules(x for x in standard_library if x not in excluded_modules)