Francis

Results 4 issues of Francis

This may have something to do with the clone issue. ``` >>> from couchdbkit import * >>> class Address(DocumentSchema): ... address = StringProperty() ... >>> class Person(Document): ... name =...

Need Feedback

``` >>> from decimal import Decimal >>> from couchdbkit import * >>> class A(Document): ... prices = ListProperty() ... >>> a = A() >>> a.prices.append(Decimal('22.44')) >>> a.prices.append(Decimal('67.87')) >>> a.prices.append(Decimal('22.44')) >>>...

Just to note, this issue was in couchdbkit before the recent changes to clone. And it's still here after the recent commits. (It just so happens that this affected me...

improvment
Need Feedback

## Problem When currently using `ET_Get` it is impossible to put a `Complex` filter inside a `Complex` filter. This makes writing actual complex queries useless as they won't work. For...