-
Notifications
You must be signed in to change notification settings - Fork 72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use sys.stdlib_module_names #198
base: master
Are you sure you want to change the base?
Conversation
OK, these are in the old list, but not in
|
Almost all of them are old Python 2 modules. These are the ones that I can't see in the Python 2 docs, so no idea where these came from: Plus |
@@ -4,7 +4,6 @@ | |||
from functools import * | |||
import os | |||
from os import path | |||
import StringIO |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are no stdlib modules in Py3 that start with an uppercase character, so I think this just has to be removed from the tests.
That should help reduce maintenance in future anyway. |
Fix #184, fix #175 and similar, once and for all (atleast once support for Python 3.9 is dropped).