From 6701f7c8b070b320cab7cda52963b53f54747027 Mon Sep 17 00:00:00 2001 From: Dmitry Shibanov Date: Tue, 13 Oct 2020 16:42:04 +0300 Subject: [PATCH] add new exclude --- tests/sources/python-modules.py | 4 ++++ 1 file changed, 4 insertions(+) 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',