Skip to content

Commit

Permalink
pylint warning generated on Travis (case-sensitive filesystem.)
Browse files Browse the repository at this point in the history
  • Loading branch information
jamadden committed May 31, 2018
1 parent 6dfc477 commit 64a5f41
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion ci-requirements.txt
Expand Up @@ -11,7 +11,9 @@ Cython >= 0.28.1
greenlet>=0.4.13 ; platform_python_implementation == "CPython"
pylint>=1.8.0 ; python_version < "3.4"
pylint >= 2.0.0.dev1 ; python_version >= "3.4"
astroid >= 2.0.0.dev1 ; python_version >= "3.4"
# pylint 2 needs astroid 2; unfortunately, it uses `typed_ast`
# which has a C extension that doesn't build on PyPy
astroid >= 2.0.0.dev1 ; python_version >= "3.4" and platform_python_implementation == "CPython"
# See version requirements in setup.py
cffi >= 1.11.5 ; platform_python_implementation == "CPython"

Expand Down
4 changes: 2 additions & 2 deletions src/gevent/queue.py
Expand Up @@ -35,7 +35,7 @@
import collections

if sys.version_info[0] == 2:
import Queue as __queue__
import Queue as __queue__ # python 3: pylint:disable=import-error
else:
import queue as __queue__ # python 2: pylint:disable=import-error
Full = __queue__.Full
Expand All @@ -52,7 +52,7 @@
__imports__ = ['Empty', 'Full']
if hasattr(__queue__, 'SimpleQueue'):
__imports__.append('SimpleQueue') # New in 3.7
SimpleQueue = __queue__.SimpleQueue
SimpleQueue = __queue__.SimpleQueue # pylint:disable=no-member
__all__ = __implements__ + __extensions__ + __imports__


Expand Down

0 comments on commit 64a5f41

Please sign in to comment.