@@ -7084,7 +7084,7 @@ def fillna(
70847084 if not PYPY :
70857085 if sys .getrefcount (
70867086 self
7087- ) < REF_COUNT and not sys . _is_local_in_caller_frame (self ):
7087+ ) < REF_COUNT and not lib . is_local_in_caller_frame (self ):
70887088 warnings .warn (
70897089 _chained_assignment_method_msg ,
70907090 ChainedAssignmentError ,
@@ -7333,7 +7333,7 @@ def ffill(
73337333 if not PYPY :
73347334 if sys .getrefcount (
73357335 self
7336- ) < REF_COUNT and not sys . _is_local_in_caller_frame (self ):
7336+ ) < REF_COUNT and not lib . is_local_in_caller_frame (self ):
73377337 warnings .warn (
73387338 _chained_assignment_method_msg ,
73397339 ChainedAssignmentError ,
@@ -7475,7 +7475,7 @@ def bfill(
74757475 if not PYPY :
74767476 if sys .getrefcount (
74777477 self
7478- ) < REF_COUNT and not sys . _is_local_in_caller_frame (self ):
7478+ ) < REF_COUNT and not lib . is_local_in_caller_frame (self ):
74797479 warnings .warn (
74807480 _chained_assignment_method_msg ,
74817481 ChainedAssignmentError ,
@@ -7562,7 +7562,7 @@ def replace(
75627562 if not PYPY :
75637563 if sys .getrefcount (
75647564 self
7565- ) < REF_COUNT and not sys . _is_local_in_caller_frame (self ):
7565+ ) < REF_COUNT and not lib . is_local_in_caller_frame (self ):
75667566 warnings .warn (
75677567 _chained_assignment_method_msg ,
75687568 ChainedAssignmentError ,
@@ -7927,7 +7927,7 @@ def interpolate(
79277927 if not PYPY :
79287928 if sys .getrefcount (
79297929 self
7930- ) < REF_COUNT and not sys . _is_local_in_caller_frame (self ):
7930+ ) < REF_COUNT and not lib . is_local_in_caller_frame (self ):
79317931 warnings .warn (
79327932 _chained_assignment_method_msg ,
79337933 ChainedAssignmentError ,
@@ -8584,7 +8584,7 @@ def clip(
85848584 if not PYPY :
85858585 if sys .getrefcount (
85868586 self
8587- ) < REF_COUNT and not sys . _is_local_in_caller_frame (self ):
8587+ ) < REF_COUNT and not lib . is_local_in_caller_frame (self ):
85888588 warnings .warn (
85898589 _chained_assignment_method_msg ,
85908590 ChainedAssignmentError ,
@@ -10221,7 +10221,7 @@ def where(
1022110221 if not PYPY :
1022210222 if sys .getrefcount (
1022310223 self
10224- ) < REF_COUNT and not sys . _is_local_in_caller_frame (self ):
10224+ ) < REF_COUNT and not lib . is_local_in_caller_frame (self ):
1022510225 warnings .warn (
1022610226 _chained_assignment_method_msg ,
1022710227 ChainedAssignmentError ,
@@ -10287,7 +10287,7 @@ def mask(
1028710287 if not PYPY :
1028810288 if sys .getrefcount (
1028910289 self
10290- ) < REF_COUNT and not sys . _is_local_in_caller_frame (self ):
10290+ ) < REF_COUNT and not lib . is_local_in_caller_frame (self ):
1029110291 warnings .warn (
1029210292 _chained_assignment_method_msg ,
1029310293 ChainedAssignmentError ,
0 commit comments