@@ -7069,7 +7069,7 @@ def fillna(
70697069 """
70707070 inplace = validate_bool_kwarg (inplace , "inplace" )
70717071 if inplace :
7072- if not PYPY :
7072+ if not PYPY and sys . version_info < ( 3 , 14 ) :
70737073 if sys .getrefcount (self ) <= REF_COUNT :
70747074 warnings .warn (
70757075 _chained_assignment_method_msg ,
@@ -7300,7 +7300,7 @@ def ffill(
73007300 """
73017301 inplace = validate_bool_kwarg (inplace , "inplace" )
73027302 if inplace :
7303- if not PYPY :
7303+ if not PYPY and sys . version_info < ( 3 , 14 ) :
73047304 if sys .getrefcount (self ) <= REF_COUNT :
73057305 warnings .warn (
73067306 _chained_assignment_method_msg ,
@@ -7440,7 +7440,7 @@ def bfill(
74407440 """
74417441 inplace = validate_bool_kwarg (inplace , "inplace" )
74427442 if inplace :
7443- if not PYPY :
7443+ if not PYPY and sys . version_info < ( 3 , 14 ) :
74447444 if sys .getrefcount (self ) <= REF_COUNT :
74457445 warnings .warn (
74467446 _chained_assignment_method_msg ,
@@ -7525,7 +7525,7 @@ def replace(
75257525
75267526 inplace = validate_bool_kwarg (inplace , "inplace" )
75277527 if inplace :
7528- if not PYPY :
7528+ if not PYPY and sys . version_info < ( 3 , 14 ) :
75297529 if sys .getrefcount (self ) <= REF_COUNT :
75307530 warnings .warn (
75317531 _chained_assignment_method_msg ,
@@ -7888,7 +7888,7 @@ def interpolate(
78887888 inplace = validate_bool_kwarg (inplace , "inplace" )
78897889
78907890 if inplace :
7891- if not PYPY :
7891+ if not PYPY and sys . version_info < ( 3 , 14 ) :
78927892 if sys .getrefcount (self ) <= REF_COUNT :
78937893 warnings .warn (
78947894 _chained_assignment_method_msg ,
@@ -8472,7 +8472,7 @@ def clip(
84728472 inplace = validate_bool_kwarg (inplace , "inplace" )
84738473
84748474 if inplace :
8475- if not PYPY :
8475+ if not PYPY and sys . version_info < ( 3 , 14 ) :
84768476 if sys .getrefcount (self ) <= REF_COUNT :
84778477 warnings .warn (
84788478 _chained_assignment_method_msg ,
@@ -10081,7 +10081,7 @@ def where(
1008110081 """
1008210082 inplace = validate_bool_kwarg (inplace , "inplace" )
1008310083 if inplace :
10084- if not PYPY :
10084+ if not PYPY and sys . version_info < ( 3 , 14 ) :
1008510085 if sys .getrefcount (self ) <= REF_COUNT :
1008610086 warnings .warn (
1008710087 _chained_assignment_method_msg ,
@@ -10145,7 +10145,7 @@ def mask(
1014510145 ) -> Self | None :
1014610146 inplace = validate_bool_kwarg (inplace , "inplace" )
1014710147 if inplace :
10148- if not PYPY :
10148+ if not PYPY and sys . version_info < ( 3 , 14 ) :
1014910149 if sys .getrefcount (self ) <= REF_COUNT :
1015010150 warnings .warn (
1015110151 _chained_assignment_method_msg ,
0 commit comments