jorisvandenbossche commented on issue #41469:
URL: https://github.com/apache/arrow/issues/41469#issuecomment-2088131930

   The quick attempt at reproducing this in pyarrow, but as you also observed 
that doesn't crash:
   
   ```python
   import pyarrow as pa
   
   typ = pa.struct([
       pa.field("id", pa.int64()),
       pa.field("value", 
pa.list_(pa.list_(pa.list_(pa.list_(pa.list_(pa.float64()))))))
   ])
   arr = pa.array([{"id": 0, "value": None}], typ)
   arr.to_pandas()
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to