cubicweb/entity.py
changeset 11129 97095348b3ee
parent 11109 c361260fe191
parent 11057 0b59724cb3f2
child 11167 e7514e949ad8
equal deleted inserted replaced
11128:9b4de34ad394 11129:97095348b3ee
    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