File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -157,8 +157,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
157
157
-i " pandas.Series.str.normalize RT03,SA01" \
158
158
-i " pandas.Series.str.repeat SA01" \
159
159
-i " pandas.Series.str.replace SA01" \
160
- -i " pandas.Series.str.wrap RT03,SA01" \
161
- -i " pandas.Series.str.zfill RT03" \
162
160
-i " pandas.Series.struct.dtypes SA01" \
163
161
-i " pandas.Series.to_markdown SA01" \
164
162
-i " pandas.Timedelta.asm8 SA01" \
Original file line number Diff line number Diff line change @@ -1828,6 +1828,7 @@ def zfill(self, width: int):
1828
1828
Returns
1829
1829
-------
1830
1830
Series/Index of objects.
1831
+ A Series or Index where the strings are prepended with '0' characters.
1831
1832
1832
1833
See Also
1833
1834
--------
@@ -2360,6 +2361,13 @@ def wrap(
2360
2361
Returns
2361
2362
-------
2362
2363
Series or Index
2364
+ A Series or Index where the strings are wrapped at the specified line width.
2365
+
2366
+ See Also
2367
+ --------
2368
+ Series.str.strip : Remove leading and trailing characters in Series/Index.
2369
+ Series.str.lstrip : Remove leading characters in Series/Index.
2370
+ Series.str.rstrip : Remove trailing characters in Series/Index.
2363
2371
2364
2372
Notes
2365
2373
-----
You can’t perform that action at this time.
0 commit comments