File tree 2 files changed +5
-1
lines changed
2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
82
82
-i " pandas.Timestamp.min PR02" \
83
83
-i " pandas.Timestamp.resolution PR02" \
84
84
-i " pandas.Timestamp.tzinfo GL08" \
85
- -i " pandas.api.types.is_re_compilable PR07,SA01" \
86
85
-i " pandas.arrays.ArrowExtensionArray PR07,SA01" \
87
86
-i " pandas.arrays.IntegerArray SA01" \
88
87
-i " pandas.arrays.IntervalArray.length SA01" \
Original file line number Diff line number Diff line change @@ -190,12 +190,17 @@ def is_re_compilable(obj: object) -> bool:
190
190
Parameters
191
191
----------
192
192
obj : The object to check
193
+ The object to check if the object can be compiled into a regex pattern instance.
193
194
194
195
Returns
195
196
-------
196
197
bool
197
198
Whether `obj` can be compiled as a regex pattern.
198
199
200
+ See Also
201
+ --------
202
+ api.types.is_re : Check if the object is a regex pattern instance.
203
+
199
204
Examples
200
205
--------
201
206
>>> from pandas.api.types import is_re_compilable
You can’t perform that action at this time.
0 commit comments