Changes between Initial Version and Version 1 of Ticket #10664, comment 7
- Timestamp:
- Jan 2, 2012, 9:45:15 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #10664, comment 7
initial v1 1 Django provides [https://docs.djangoproject.com/en/dev/ref/settings/#serialization-modules an extension point] to support custom (de)serializers, and you've used it successfully implementedthis as a third party module.1 Django provides [https://docs.djangoproject.com/en/dev/ref/settings/#serialization-modules an extension point] to support custom (de)serializers, and you've used it successfully to implement this as a third party module. 2 2 3 3 However, it may not be an improvement to merge it in Django, because that would put severe constraints on further developments. Also, there's a lot of flexibility in Python code, and I'm not sure we can find a one-size-fits-all design. 4 4 5 5 If you think still it would be a good idea to include a reasonably generic implementation of this concept in Django, could you send a proposal to the django-developers mailing-list? 6 7 EDIT: I just noticed Lino is licensed under the GPL, so we can't merge it anyway.