File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1723,7 +1723,7 @@ def items(self):
1723
1723
for h in self ._info_axis :
1724
1724
yield h , self [h ]
1725
1725
1726
- @Appender (items . __doc__ )
1726
+ @doc (items )
1727
1727
def iteritems (self ):
1728
1728
return self .items ()
1729
1729
@@ -10222,7 +10222,7 @@ def _add_series_or_dataframe_operations(cls):
10222
10222
"""
10223
10223
from pandas .core .window import EWM , Expanding , Rolling , Window
10224
10224
10225
- @Appender (Rolling . __doc__ )
10225
+ @doc (Rolling )
10226
10226
def rolling (
10227
10227
self ,
10228
10228
window ,
@@ -10260,14 +10260,14 @@ def rolling(
10260
10260
10261
10261
cls .rolling = rolling
10262
10262
10263
- @Appender (Expanding . __doc__ )
10263
+ @doc (Expanding )
10264
10264
def expanding (self , min_periods = 1 , center = False , axis = 0 ):
10265
10265
axis = self ._get_axis_number (axis )
10266
10266
return Expanding (self , min_periods = min_periods , center = center , axis = axis )
10267
10267
10268
10268
cls .expanding = expanding
10269
10269
10270
- @Appender (EWM . __doc__ )
10270
+ @doc (EWM )
10271
10271
def ewm (
10272
10272
self ,
10273
10273
com = None ,
You can’t perform that action at this time.
0 commit comments