From f6ede0f4731ca0ed14a3b8fcc4c547ffda7a463c Mon Sep 17 00:00:00 2001 From: MaksimZhukov <46996400+MaksimZhukov@users.noreply.github.com> Date: Tue, 22 Nov 2022 15:19:00 +0100 Subject: [PATCH] Remove asyncore and asynchat modules from tests --- tests/sources/python-modules.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/sources/python-modules.py b/tests/sources/python-modules.py index bf2d89f..474317a 100644 --- a/tests/sources/python-modules.py +++ b/tests/sources/python-modules.py @@ -271,9 +271,11 @@ if sys.version_info >= (3, 11) and platform.system() == 'Linux' and '18.04' in p standard_library.remove('tkinter') standard_library.remove('turtle') -# 'smtpd' module has been removed from Python 3.12 +# 'smtpd', 'asyncore' and 'asynchat' modules have been removed from Python 3.12 if sys.version_info >= (3, 12): standard_library.remove('smtpd') + standard_library.remove('asyncore') + standard_library.remove('asynchat') # Remove tkinter and Easter eggs excluded_modules = [