diff --git a/tests/sources/python-modules.py b/tests/sources/python-modules.py index 5dc91974..e00b66f5 100644 --- a/tests/sources/python-modules.py +++ b/tests/sources/python-modules.py @@ -255,6 +255,10 @@ def replace(lst, old, new): if sys.version_info > (3, 8): standard_library.remove('dummy_threading') +# 'symbol' module has been removed from Python 3.10 +if sys.version_info >= (3, 10): + standard_library.remove('symbol') + # Remove tkinter and Easter eggs excluded_modules = [ 'antigravity',