Closed inlinestyle closed 10 years ago
Couple of minor comments otherwise looks good. Feel free to merge once you've addressed them.
One thing which does occur to me is that for breaking changes like this (for which you've rightly incremented the version to 0.6) it might make sense to start maintaining some sort of basic changelog document. But, probably not worth worrying about for now.
review @tleach
Make
Model().update
delegate to the Pythondict
API. Currently,Model().update
overrides thedict
API in favor of proxyingModel.collection.update
. This was nice, but ultimately the cost of not being able to treat Models like dicts was too high. This would changeModel
s to have the following methods:Model.update
(proxiesModel.collection.update
)Model().update
(proxiesdict.update
)Model().update_instance
(proxiesModel.collection.update
)