| Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Since we used delete on the __attr_write key value dictionary, the
return value we cached was missing the name attribute, causing the
client not to see it.
Fix it with a deepcopy.
|
|
|
|
|
|
|
|
|
|
To distinguish id sets from Node/Link sets.
Closes #250
|
|
The reason json failed was that we were using a class instead of an
instance, i.e.
clazz = namedtuple('bla', ['field1', 'field2'])
instance = clazz(field1='foo', field2='bar')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|