You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Originally reported by: Buck Evan (BitBucket: bukzor, GitHub: @bukzor?)
I realize you've closed a similar issue lately, but it's still a bug that the "ignore" configurations don't cover this case. There are black-magical modules other than six, and they should have some small amount of support via configuration.
import six
print(six.moves.urllib.parse.urlsplit(''))
from six import moves
print(moves.urllib.parse.urlsplit(''))
from six.moves import urllib
print(urllib.parse.urlsplit(''))
from six.moves.urllib import parse
print(parse.urlsplit(''))
from six.moves.urllib.parse import urlsplit
print(urlsplit(''))
Originally reported by: Buck Evan (BitBucket: bukzor, GitHub: @bukzor?)
I realize you've closed a similar issue lately, but it's still a bug that the "ignore" configurations don't cover this case. There are black-magical modules other than six, and they should have some small amount of support via configuration.
My versions:
My demo code:
Its output:
My pylintrc:
The pylint report:
The text was updated successfully, but these errors were encountered: