blob: 99af28d1cd0e8c98cb10657efe18ff5f5c00cfff [file] [log] [blame]
"""Check invalid value returned by __len__ """
# pylint: disable=too-few-public-methods,missing-docstring,no-self-use,import-error, useless-object-inheritance
import sys
import six
from missing import Missing
class FirstGoodLen(object):
"""__len__ returns <type 'int'>"""
def __len__(self):
return 0
class SecondGoodLen(object):
"""__len__ returns <type 'long'>"""
def __len__(self):
return sys.maxsize + 1
class LenMetaclass(type):
def __len__(cls):
return 1
@six.add_metaclass(LenMetaclass)
class ThirdGoodLen(object):
"""Length through the metaclass."""
class FirstBadLen(object):
""" __len__ returns a negative integer """
def __len__(self): # [invalid-length-returned]
return -1
class SecondBadLen(object):
""" __len__ returns non-int """
def __len__(self): # [invalid-length-returned]
return 3.0
class ThirdBadLen(object):
""" __len__ returns node which does not have 'value' in AST """
def __len__(self): # [invalid-length-returned]
return lambda: 3
class NonRegression(object):
""" __len__ returns nothing """
def __len__(self): # [invalid-length-returned]
print(3.0)
class AmbigousLen(object):
""" Uninferable return value """
__len__ = lambda self: Missing
class AnotherAmbiguousLen(object):
"""Potential uninferable return value"""
def __len__(self):
return int(Missing)