Aniruddha Maru
Aniruddha Maru
- Added support for read-only fields - Renamed `.data` to `.representation` (and added `.internal_value`) for better clarity - Renamed `.to_value` to `.to_representation` (and added `to_internal_value`) for better clarity TBD update...
In some cases, it's desirable for the `data` to be ordered, in others, it's mandatory for the deserialization to respect order - example, deserializing Django objects with reverse fkey relations.
Serpy could easily be extended to support deserialization from dict back into Complex objects like Django objects. This would make it feature complete and a good candidate for replacing DRF...
Tried on both cedar and cedar-14, no luck :( ``` → cat .buildpacks https://github.com/cyberdelia/heroku-geo-buildpack.git#1.3 https://github.com/heroku/heroku-buildpack-python.git#v60 ``` Deploy looks fine: ``` remote: =====> Downloading Buildpack: https://github.com/cyberdelia/heroku-geo-buildpack.git remote: =====> Detected Framework: geos/gdal/proj...
Fixes efectn/go-orm-benchmarks#5
Since Insert doesn't check for created Id for raw and ent, the inserted model's id is `0` and hence the subsequence update doesn't affect any rows, and hence the code...
In case of custom user models, it's left up to user to extend or directly use `LongerUserNameUserAdmin` as desired.
## Summary Add support for parallel sub-tests and remove `suite.Suite` pseudo-interitance ## Changes - Run sub-tests in a group so `TearDownSuite` is called in the right order - Remove `suite.Suite`...
**Is your feature request related to a problem? Please describe.** It would be useful to be able to write tests like this: ``` def test_foo_bar(settings): settings.FOO = "bar" def test_foo_not(settings):...