Пример #1
0
 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)
     ))
Пример #2
0
 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):
     """
     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))
Пример #4
0
 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,
     ))
Пример #5
0
 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))
     )
Пример #8
0
 def __repr__(self):
     return unicode_to_repr(
         representation.serializer_repr(self, indent=1))
Пример #9
0
 def __repr__(self):
     return unicode_to_repr(
         "<%s(queryset=%s)>" %
         (self.__class__.__name__, smart_repr(self.queryset)))
Пример #10
0
 def __repr__(self):
     return unicode_to_repr(
         '<%s(queryset=%s, fields=%s)>' %
         (self.__class__.__name__, smart_repr(
             self.queryset), smart_repr(self.fields)))
Пример #11
0
 def __repr__(self):
     return unicode_to_repr(representation.serializer_repr(self, indent=1))
Пример #12
0
 def __repr__(self):
     return unicode_to_repr('ErrorDetail(string=%r, code=%r)' % (
         six.text_type(self),
         self.code,
     ))
Пример #13
0
 def __repr__(self):
     return unicode_to_repr(representation.list_repr(self, indent=1))
Пример #14
0
 def __repr__(self):
     return unicode_to_repr('<%s>' % (self.__class__.__name__))
Пример #15
0
 def __repr__(self):
     return unicode_to_repr('ErrorDetail(string=%r, code=%r)' % (
         six.text_type(self),
         self.code,
     ))
Пример #16
0
 def __repr__(self):
     return unicode_to_repr(representation.list_repr(self, indent=1))
Пример #17
0
 def __repr__(self):
     return unicode_to_repr('%s()' % self.__class__.__name__)
Пример #18
0
 def __repr__(self):
     return unicode_to_repr(
         '<%s value=%s errors=%s>' %
         (self.__class__.__name__, self.value, self.errors))
Пример #19
0
 def __repr__(self):
     return unicode_to_repr('<%s(queryset=%s)>' % (
         self.__class__.__name__,
         smart_repr(self.queryset)
     ))
Пример #20
0
 def __repr__(self):
     return unicode_to_repr(
         '%s(%s)' % (self.__class__.__name__, unicode_repr(self.default))
     )
 def __repr__(self):
     return unicode_to_repr('<%s value=%s errors=%s>' % (
         self.__class__.__name__, self.value, self.errors
     ))
Пример #22
0
 def __repr__(self):
     return unicode_to_repr('<{}(fields={})>'.format(
         self.__class__.__name__, smart_repr(self.fields)))