Skip to content

Commit 6701f7c

Browse files
author
Dmitry Shibanov
committed
add new exclude
1 parent 1430296 commit 6701f7c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/sources/python-modules.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,10 @@ def replace(lst, old, new):
255255
if sys.version_info > (3, 8):
256256
standard_library.remove('dummy_threading')
257257

258+
# 'symbol' module has been removed from Python 3.10
259+
if sys.version_info >= (3, 10):
260+
standard_library.remove('symbol')
261+
258262
# Remove tkinter and Easter eggs
259263
excluded_modules = [
260264
'antigravity',

0 commit comments

Comments
 (0)