@@ -1039,7 +1039,7 @@ cdef class _Timedelta(timedelta):
1039
1039
# higher than np.ndarray and np.matrix
1040
1040
__array_priority__ = 100
1041
1041
1042
- docstring_min = """
1042
+ _docstring_min = """
1043
1043
Returns the minimum bound possible for Timedelta.
1044
1044
1045
1045
This property provides access to the smallest possible value that
@@ -1061,7 +1061,7 @@ cdef class _Timedelta(timedelta):
1061
1061
-106752 days +00:12:43.145224193
1062
1062
"""
1063
1063
1064
- docstring_max = """
1064
+ _docstring_max = """
1065
1065
Returns the maximum bound possible for Timedelta.
1066
1066
1067
1067
This property provides access to the largest possible value that
@@ -1083,7 +1083,7 @@ cdef class _Timedelta(timedelta):
1083
1083
106751 days 23:47:16.854775807
1084
1084
"""
1085
1085
1086
- docstring_reso = """
1086
+ _docstring_reso = """
1087
1087
Returns the smallest possible difference between non-equal Timedelta objects.
1088
1088
1089
1089
The resolution value is determined by the underlying representation of time
@@ -1104,9 +1104,9 @@ cdef class _Timedelta(timedelta):
1104
1104
0 days 00:00:00.000000001
1105
1105
"""
1106
1106
1107
- min = MinMaxReso(" min" , docstring_min )
1108
- max = MinMaxReso(" max" , docstring_max )
1109
- resolution = MinMaxReso(" resolution" , docstring_reso )
1107
+ min = MinMaxReso(" min" , _docstring_min )
1108
+ max = MinMaxReso(" max" , _docstring_max )
1109
+ resolution = MinMaxReso(" resolution" , _docstring_reso )
1110
1110
1111
1111
@property
1112
1112
def value (self ):
0 commit comments