mroeschke opened a new issue, #34614: URL: https://github.com/apache/arrow/issues/34614
### Describe the enhancement requested ``` In [2]: import pyarrow as pa; from datetime import datetime In [4]: pa.array([datetime(2023, 1, 1)], type=pa.timestamp("ns")).to_pylist() Out[4]: [Timestamp('2023-01-01 00:00:00')] ``` From the docs, I assumed `Convert to a list of native Python objects.` means I should always expected a `datetime.datetime`object, but since I suppose it cannot handle nanosecond components this method returns a `pandas.Timestamp` when the unit is `"ns"` ### 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