def __repr__(self): return unicode_to_repr('<%s(queryset=%s, field=%s, date_field=%s)>' % ( self.__class__.__name__, smart_repr(self.queryset), smart_repr(self.field), smart_repr(self.date_field) ))
def __repr__(self): """ Fields are represented using their initial calling arguments. This allows us to create descriptive representations for serializer instances that show all the declared fields on the serializer. """ return unicode_to_repr(representation.field_repr(self))
def __repr__(self): return unicode_to_repr("<%s %s value=%s errors=%s instance=%s>" % ( self.__class__.__name__, self._field.field_name, self.value, self.errors, self.instance, ))
def __repr__(self): """ The parent representation function iterates through the queryset and generates a representation for every object in the queryset. This is particularly problematic when CMIS is enabled and for each object a query to the DMS has to be done. """ return unicode_to_repr( "<%s(fields=%s)>" % (self.__class__.__name__, smart_repr(self.fields)) )
def __repr__(self): return unicode_to_repr('%s()' % self.__class__.__name__)
def __repr__(self): return unicode_to_repr( '%s(%s)' % (self.__class__.__name__, unicode_repr(self.default)) )
def __repr__(self): return unicode_to_repr( representation.serializer_repr(self, indent=1))
def __repr__(self): return unicode_to_repr( "<%s(queryset=%s)>" % (self.__class__.__name__, smart_repr(self.queryset)))
def __repr__(self): return unicode_to_repr( '<%s(queryset=%s, fields=%s)>' % (self.__class__.__name__, smart_repr( self.queryset), smart_repr(self.fields)))
def __repr__(self): return unicode_to_repr(representation.serializer_repr(self, indent=1))
def __repr__(self): return unicode_to_repr('ErrorDetail(string=%r, code=%r)' % ( six.text_type(self), self.code, ))
def __repr__(self): return unicode_to_repr(representation.list_repr(self, indent=1))
def __repr__(self): return unicode_to_repr('<%s>' % (self.__class__.__name__))
def __repr__(self): return unicode_to_repr( '<%s value=%s errors=%s>' % (self.__class__.__name__, self.value, self.errors))
def __repr__(self): return unicode_to_repr('<%s(queryset=%s)>' % ( self.__class__.__name__, smart_repr(self.queryset) ))
def __repr__(self): return unicode_to_repr('<%s value=%s errors=%s>' % ( self.__class__.__name__, self.value, self.errors ))
def __repr__(self): return unicode_to_repr('<{}(fields={})>'.format( self.__class__.__name__, smart_repr(self.fields)))