File tree 1 file changed +3
-0
lines changed
1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -7454,6 +7454,7 @@ def ffill(
7454
7454
ctr = sys .getrefcount (self )
7455
7455
ref_count = REF_COUNT
7456
7456
if isinstance (self , ABCSeries ) and hasattr (self , "_cacher" ):
7457
+ # see https://github.com/pandas-dev/pandas/pull/56060#discussion_r1399245221
7457
7458
ref_count += 1
7458
7459
if ctr <= ref_count :
7459
7460
warnings .warn (
@@ -7636,6 +7637,7 @@ def bfill(
7636
7637
ctr = sys .getrefcount (self )
7637
7638
ref_count = REF_COUNT
7638
7639
if isinstance (self , ABCSeries ) and hasattr (self , "_cacher" ):
7640
+ # see https://github.com/pandas-dev/pandas/pull/56060#discussion_r1399245221
7639
7641
ref_count += 1
7640
7642
if ctr <= ref_count :
7641
7643
warnings .warn (
@@ -8242,6 +8244,7 @@ def interpolate(
8242
8244
ctr = sys .getrefcount (self )
8243
8245
ref_count = REF_COUNT
8244
8246
if isinstance (self , ABCSeries ) and hasattr (self , "_cacher" ):
8247
+ # see https://github.com/pandas-dev/pandas/pull/56060#discussion_r1399245221
8245
8248
ref_count += 1
8246
8249
if ctr <= ref_count :
8247
8250
warnings .warn (
You can’t perform that action at this time.
0 commit comments