danepitkin commented on PR #34894: URL: https://github.com/apache/arrow/pull/34894#issuecomment-1499422391
Updated `types.py`: ``` >>> import pyarrow >>> from pyarrow.types import * >>> print(is_null.__doc__) Return True if value is an instance of type: null. Parameters ---------- t : DataType >>> print(is_boolean.__doc__) Return True if value is an instance of type: boolean. Parameters ---------- t : DataType >>> print(is_map.__doc__) Return True if value is an instance of type: logical map. Parameters ---------- t : DataType >>> print(is_unicode.__doc__) Alias for is_string. Parameters ---------- t : DataType >>> print(is_large_unicode.__doc__) Alias for is_large_string. Parameters ---------- t : DataType ``` -- 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]
