[FEA] Support non-broadcasting (non-scalar) assignment on list columns #13291
Labels
0 - Backlog
In queue waiting for assignment
feature request
New feature or request
Python
Affects Python cuDF API.
Consider
I would expect this to work and produce
[[4], [5], [3]]
. Instead, we get an error:Indeed, the only things we can
__setitem__
into list columns arecudf.NA
and a singleton list (treated as acudf.Scalar
) that is broadcast to all entries.The text was updated successfully, but these errors were encountered: