Shawn Adams

Results 5 issues of Shawn Adams

This kind of bothers me ``` python @to_object() @from_object() class Foo(object): pass ``` The decorators are separate because each accepts arguments that modify the encode/decode behavior of the object. Stil,...

design thought

`OneOf._validate`: Fix string handling in the inner function ``` python def stringify(item): if isinstance(item, str): return "'{0}'".format(item) return str(item) ``` in `OneOf._validate`

The current documentation is kind of a wall of information.

I dont think i like how `ObjectSchema` and `List` serialize to JSON. The commit in question is 806e92331d6d. Unfortunately that commit also includes the JSON decodable `ValidationError` change. Those should...

design thought