File tree 2 files changed +531
-38
lines changed
third_party/bigframes_vendored/pandas/core/indexes
2 files changed +531
-38
lines changed Original file line number Diff line number Diff line change @@ -134,7 +134,6 @@ def name(self, value: blocks.Label):
134
134
135
135
@property
136
136
def names (self ) -> typing .Sequence [blocks .Label ]:
137
- """Returns the names of the Index."""
138
137
return self ._block ._index_labels
139
138
140
139
@names .setter
@@ -175,7 +174,6 @@ def dtypes(self) -> pandas.Series:
175
174
176
175
@property
177
176
def size (self ) -> int :
178
- """Returns the size of the Index."""
179
177
return self .shape [0 ]
180
178
181
179
@property
@@ -186,12 +184,6 @@ def empty(self) -> bool:
186
184
@property
187
185
@validations .requires_ordering ()
188
186
def is_monotonic_increasing (self ) -> bool :
189
- """
190
- Return a boolean if the values are equal or increasing.
191
-
192
- Returns:
193
- bool
194
- """
195
187
return typing .cast (
196
188
bool ,
197
189
self ._block .is_monotonic_increasing (self ._block .index_columns ),
You can’t perform that action at this time.
0 commit comments