Django DateTimeField Stores datetime regardless of the tzinfo
问题 Why django DateTimeField restore tzinfo in datetime to <utc> ? Below is my test code. Is it normal or wrong.? If it is normal, what is the reason? models.py class Date(models.Model): datetime = models.DateTimeField() settings.py TIME_ZONE = 'Asia/Seoul' USE_TZ = True test.py from django.utils import timezone datetime = timezone.localtime(timezone.localtimezone.now()) #now datetime is datetime.datetime(2015, 10, 22, 20, 31, 56, 248000, tzinfo=<DstTzInfo 'Asia/Seoul' KST+9:00:00 STD>) models