entity.py
changeset 11109 c361260fe191
parent 11047 bfd11ffa79f7
child 11261 9e926f2dc84d
equal deleted inserted replaced
11108:c14087d08698 11109:c361260fe191
    18 """Base class for entity objects manipulated in clients"""
    18 """Base class for entity objects manipulated in clients"""
    19 
    19 
    20 __docformat__ = "restructuredtext en"
    20 __docformat__ = "restructuredtext en"
    21 
    21 
    22 from warnings import warn
    22 from warnings import warn
    23 from functools import partial
       
    24 
    23 
    25 from six import text_type, string_types, integer_types
    24 from six import text_type, string_types, integer_types
    26 from six.moves import range
    25 from six.moves import range
    27 
    26 
    28 from logilab.common.decorators import cached
    27 from logilab.common.decorators import cached