Example #1
0
    def __repr__(self):
        options = dict(self.options)
        options['validators'] = self.validators

        cls = type(self)

        return '<{}.{}({})>'.format(cls.__module__, cls.__name__,
                                    _utils.repr_options(options))
Example #2
0
    def __repr__(self):
        options = dict(self.options)
        options['validators'] = self.validators

        cls = type(self)

        return '<{}.{}({})>'.format(cls.__module__, cls.__name__,
                                    _utils.repr_options(options))
Example #3
0
    def __repr__(self):
        cls = type(self)

        return '<{}.{}({})>'.format(cls.__module__, cls.__name__,
                                    _utils.repr_options(dict(self)))
Example #4
0
 def __repr__(cls):
     return '<{}.{}({})>'.format(cls.__module__, cls.__name__,
                                 _utils.repr_options(cls._fields))
Example #5
0
 def __repr__(cls):
     return '<{}.{}({})>'.format(cls.__module__, cls.__name__,
                                 _utils.repr_options(cls._fields))
Example #6
0
    def __repr__(self):
        cls = type(self)

        return '<{}.{}({})>'.format(cls.__module__, cls.__name__,
                                    _utils.repr_options(dict(self)))