I want to store a datetime object with a localized UTC timezone. The method that stores the datetime object can be given a non-localized datetime (naive) object or an object that already has been localized. How do I determine if localization is needed?

Code with missing if condition:

class MyClass:
  def set_date(self, d):
    # what do i check here?
    # if(d.tzinfo):
      self.date = d.astimezone(pytz.utc)
    # else:
      self.date = pytz.utc.localize(d)
link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

if you want to check if a datetime object 'd' is localized, check the d.tzinfo, if it is None, no localization.

link|improve this answer
But what if it has a tzinfo object that is not from pytz? – chiborg Apr 27 '11 at 10:00
you want to force the localization to be in pytz format ? – Cédric Julien Apr 27 '11 at 10:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.