File tree 2 files changed +8
-2
lines changed 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -142,8 +142,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
142
142
-i " pandas.Series.sparse.sp_values SA01" \
143
143
-i " pandas.Series.sparse.to_coo PR07,RT03,SA01" \
144
144
-i " pandas.Series.std PR01,RT03,SA01" \
145
- -i " pandas.Series.str.wrap RT03,SA01" \
146
- -i " pandas.Series.str.zfill RT03" \
147
145
-i " pandas.Timedelta.asm8 SA01" \
148
146
-i " pandas.Timedelta.ceil SA01" \
149
147
-i " pandas.Timedelta.components SA01" \
Original file line number Diff line number Diff line change @@ -1853,6 +1853,7 @@ def zfill(self, width: int):
1853
1853
Returns
1854
1854
-------
1855
1855
Series/Index of objects.
1856
+ A Series or Index where the strings are prepended with '0' characters.
1856
1857
1857
1858
See Also
1858
1859
--------
@@ -2385,6 +2386,13 @@ def wrap(
2385
2386
Returns
2386
2387
-------
2387
2388
Series or Index
2389
+ A Series or Index where the strings are wrapped at the specified line width.
2390
+
2391
+ See Also
2392
+ --------
2393
+ Series.str.strip : Remove leading and trailing characters in Series/Index.
2394
+ Series.str.lstrip : Remove leading characters in Series/Index.
2395
+ Series.str.rstrip : Remove trailing characters in Series/Index.
2388
2396
2389
2397
Notes
2390
2398
-----
You can’t perform that action at this time.
0 commit comments