Great job on summarizing the issue!

I have one concern though. Can you please explain why is USE_TZ option 
better than introducing e.g. UtcDateTimeField?

USE_TZ=True will break all existing code (including external apps) which 
relies on django 1.3 documented DateTimeField behavior, this can be scary 
and will introduce a lot of "if getattr(settings, USE_TZ, False): #..." 
statements in external apps for backwards compatibility.

Good UtcDateTimeField implementation can be released as a separate package 
(and then eventually included in django itself). This way existing django 
projects will be able to use it without waiting for a release and backwards 
compatibility won't be broken. Are there obstacles in django itself that 
prevent this option? 

-- 
You received this message because you are subscribed to the Google Groups 
"Django developers" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-developers/-/3sUDTbi24PgJ.
To post to this group, send email to django-developers@googlegroups.com.
To unsubscribe from this group, send email to 
django-developers+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-developers?hl=en.

Reply via email to