rok opened a new issue, #44406:
URL: https://github.com/apache/arrow/issues/44406

   ### Describe the enhancement requested
   
   As noted in 
https://github.com/apache/arrow/pull/44070#discussion_r1799975031 - it would be 
nice if we could shorten:
   
   ```python
   storage = pa.array(data, type=storage_type)
   extension_type = pa.some_extension_type(storage_type)
   array = pa.ExtensionArray.from_storage(extension_type, storage)
   ```
   to:
   ```python
   extension_type = pa.some_extension_type(storage_type)
   array = pa.array(data, extension_type)
   ```
   
   ### Component(s)
   
   Python


-- 
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: issues-unsubscr...@arrow.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to