I am trying to compile an old 2008 code.
import datetime
if isinstance(value, datetime.date):
But I got an error:
isinstance() arg 2 must be a class, type, or tuple of classes and types Python Executable: /usr/bin/python2.6 Python Version: 2.6.5
What am I missing?
isinstance(1, datetime.date)works and returnsFalsein python 2.5.1 and 3.1.3. – khachik Apr 14 '11 at 15:33print repr(datetime.date)to find out what you are actually importing here.isinstance(1, datetime.date)returnsFalsein python 2.6.1 – rincewind Apr 14 '11 at 15:35datetimeisn't what you think it is? Try importing it and looking atdatetime.__file__. – rincewind Apr 14 '11 at 23:21