Skip to content

Commit

Permalink
add new exclude
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitry Shibanov committed Oct 13, 2020
1 parent 1430296 commit 6701f7c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/sources/python-modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 6701f7c

Please sign in to comment.