bcolz icon indicating copy to clipboard operation
bcolz copied to clipboard

crashed to flush np.object type carray

Open rabbit8ge opened this issue 6 years ago • 0 comments

import pandas as pd, numpy as np import bcolz

df = pd.DataFrame({'a':[1,2,3]},dtype=np.object) ct = bcolz.ctable.fromdataframe(df,rootdir='e:/tmp') ct.flush() ct = bcolz.open('e:/tmp') ct.flush() # crashed in this line.

rabbit8ge avatar Mar 09 '18 03:03 rabbit8ge