Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Closed
oleksiyskononenko opened this issue Feb 3, 2023 · 0 comments · Fixed by #3422
Closed

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

oleksiyskononenko opened this issue Feb 3, 2023 · 0 comments · Fixed by #3422
Labels
segfault Severe bugs that lead to crashes / seg.faults / process termination
Milestone

Comments

@oleksiyskononenko
Copy link
Contributor

oleksiyskononenko commented Feb 3, 2023

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
segfault Severe bugs that lead to crashes / seg.faults / process termination
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant