Commit 4b98f440 authored by Jason Madden's avatar Jason Madden

pylint is working now, I think.

parent aec46505
......@@ -184,7 +184,7 @@ def libev_supports_linux_aio():
# libev requires kernel 4.19 or above to be able to support
# linux AIO. It can still be compiled in, but will fail to create
# the loop at runtime.
from distutils.version import LooseVersion
from distutils.version import LooseVersion # pylint:disable=deprecated-module
from platform import system
from platform import release
......@@ -195,7 +195,7 @@ def libev_supports_linux_iouring():
# It fails with the kernel in fedora rawhide (4.19.76) but
# works (doesn't fail catastrophically when asked to create one)
# with kernel 5.3.0 (Ubuntu Bionic)
from distutils.version import LooseVersion
from distutils.version import LooseVersion # pylint:disable=deprecated-module
from platform import system
from platform import release
......
......@@ -69,7 +69,7 @@ class TestSelectors(SelectorTestMixin, greentest.TestCase):
else:
SelKind = SelKindName
SelKindName = SelKind.__name__
m = _make_test(SelKindName, SelKind)
m = _make_test(SelKindName, SelKind) # pylint:disable=too-many-function-args
locals()[m.__name__] = m
del SelKind
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment