diff --git a/python/pyarrow/types.pxi b/python/pyarrow/types.pxi index a0ddf09d69423..912ee39f7d712 100644 --- a/python/pyarrow/types.pxi +++ b/python/pyarrow/types.pxi @@ -1108,6 +1108,9 @@ cdef class Time32Type(DataType): """ Concrete class for time32 data types. + Supported time unit resolutions are 's' [second] + and 'ms' [millisecond]. + Examples -------- Create an instance of time32 type: @@ -1124,7 +1127,7 @@ cdef class Time32Type(DataType): @property def unit(self): """ - The time unit ('s', 'ms', 'us' or 'ns'). + The time unit ('s' or 'ms'). Examples -------- @@ -1140,6 +1143,9 @@ cdef class Time64Type(DataType): """ Concrete class for time64 data types. + Supported time unit resolutions are 'us' [microsecond] + and 'ns' [nanosecond]. + Examples -------- Create an instance of time64 type: @@ -1156,7 +1162,7 @@ cdef class Time64Type(DataType): @property def unit(self): """ - The time unit ('s', 'ms', 'us' or 'ns'). + The time unit ('us' or 'ns'). Examples --------