blaze / datashape

Language defining a data description protocol
BSD 2-Clause "Simplified" License
183 stars 65 forks source link

time objects are not accounted for in isnumeric #167

Closed cpcloud closed 9 years ago

cpcloud commented 9 years ago
In [49]: from datetime import time

In [50]: from datashape import isnumeric

In [51]: t = time(0, 12)

In [52]: ds = discover(t)

In [53]: ds
Out[53]: Time(None)

In [54]: isnumeric(ds)
TypeError: DataShape measure time is not NumPy-compatible