Don Spaulding
Don Spaulding
I'm not sure if it's an intentional design decision, but the probe function in Uki (line 1203 in the 0.3.5 dev download) requires the doc.body element to exist, and so...
`http_methods` is defined as [a class-level attribute on the Resource class](https://github.com/toastdriven/restless/blob/0accfd0d1ecec4726d0de350e89380ce442a82db/restless/resources.py#L59). But then [the documentation for Custom Endpoints](http://restless.readthedocs.io/en/latest/extending.html#custom-endpoints) recommends overriding `http_methods` in your resource's `__init__` method. The trouble with this...
To reproduce: ``` python from redis import Redis from jsonpickle import encode r = Redis() encode(r) ``` This snippet throws `KeyError: 0`. It seems that jsonpickle assumes an object to...
From the thanks-for-second-guessing-our-api-design department... Why pass a `data` argument to the `output` method? Wouldn't it be better to extend the parallel between Django models and ttag classes and hang the...