The following fails after fixing datetime_data
assert_equal(datetime_data(a.dtype), ('us', 1, 1, 1))
The problem is that 'us' is unicode and the function call yields bytes. The question is: should datetime units use unicode when compiled on python >= 3k?
Chuck