h2oai / datatable

A Python package for manipulating 2-dimensional tabular data structures

Home Page:https://datatable.readthedocs.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Segfault when creating frames from `np.array()` of unicode strings

oleksiyskononenko opened this issue · comments

import datatable as dt
import numpy as np
src = ['ы']*100
DT = dt.Frame(np.array(src)) # either a segfault, or the last few rows contain corrupted data

At the same time, creating a frame from a python list of unicode strings works just fine, i.e.

DT = dt.Frame(src) # no segfault, frame contains valid data

Originally posted by @arnocandel