Commit 0088685d authored by Jason Madden's avatar Jason Madden

Picky pylint warning.

parent 6e3b7000
......@@ -20,6 +20,9 @@ class ValuedWeakRef(ref):
"""
A weak ref with an associated value.
"""
# This seems entirely spurious; even on Python 2.7
# weakref.ref descends from object
# pylint: disable=slots-on-old-class
__slots__ = ('value',)
......
......@@ -97,7 +97,7 @@ cdef wait
cdef iwait
cdef reraise
cdef InvalidSwitchError
cdef IdentRegistry ident_registry
@cython.final
@cython.internal
......
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