Commit 8ef18ff0 authored by Jérome Perrin's avatar Jérome Perrin

Restricted: WIP disable some not working numpy allow_type 🚧

parent 2af96a26
...@@ -503,10 +503,12 @@ for dtype in ('int8', 'int16', 'int32', 'int64', \ ...@@ -503,10 +503,12 @@ for dtype in ('int8', 'int16', 'int32', 'int64', \
allow_type(type(rz[0])) allow_type(type(rz[0]))
allow_type(type(rz)) allow_type(type(rz))
allow_type(np.dtype) # TODO zope4py3
#allow_type(np.dtype)
allow_type(np.timedelta64) allow_type(np.timedelta64)
allow_type(type(np.c_)) allow_type(type(np.c_))
allow_type(type(np.dtype('int16'))) # TODO zope4py3
#allow_type(type(np.dtype('int16')))
allow_type( allow_type(
type(np.array([('2017-07-12T12:30:20',)], dtype=[('date', 'M8[s]')])['date']) type(np.array([('2017-07-12T12:30:20',)], dtype=[('date', 'M8[s]')])['date'])
) )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment