Kai Zhang
Results
2
comments of
Kai Zhang
Gitpython version is 2.0.2
`Or()` would allow both, not exclusively. > In [17]: schema = Schema({Or('name', 'value'): six.string_types[0]}) > > In [18]: schema.validate({'name': '123'}) > Out[18]: {'name': '123'} > > In [19]: schema.validate({'name': '123',...