@@ -7046,7 +7046,7 @@ def fillna(
7046
7046
"""
7047
7047
inplace = validate_bool_kwarg (inplace , "inplace" )
7048
7048
if inplace :
7049
- if not PYPY :
7049
+ if not PYPY and sys . version_info < ( 3 , 14 ) :
7050
7050
if sys .getrefcount (self ) <= REF_COUNT :
7051
7051
warnings .warn (
7052
7052
_chained_assignment_method_msg ,
@@ -7277,7 +7277,7 @@ def ffill(
7277
7277
"""
7278
7278
inplace = validate_bool_kwarg (inplace , "inplace" )
7279
7279
if inplace :
7280
- if not PYPY :
7280
+ if not PYPY and sys . version_info < ( 3 , 14 ) :
7281
7281
if sys .getrefcount (self ) <= REF_COUNT :
7282
7282
warnings .warn (
7283
7283
_chained_assignment_method_msg ,
@@ -7417,7 +7417,7 @@ def bfill(
7417
7417
"""
7418
7418
inplace = validate_bool_kwarg (inplace , "inplace" )
7419
7419
if inplace :
7420
- if not PYPY :
7420
+ if not PYPY and sys . version_info < ( 3 , 14 ) :
7421
7421
if sys .getrefcount (self ) <= REF_COUNT :
7422
7422
warnings .warn (
7423
7423
_chained_assignment_method_msg ,
@@ -7502,7 +7502,7 @@ def replace(
7502
7502
7503
7503
inplace = validate_bool_kwarg (inplace , "inplace" )
7504
7504
if inplace :
7505
- if not PYPY :
7505
+ if not PYPY and sys . version_info < ( 3 , 14 ) :
7506
7506
if sys .getrefcount (self ) <= REF_COUNT :
7507
7507
warnings .warn (
7508
7508
_chained_assignment_method_msg ,
@@ -7865,7 +7865,7 @@ def interpolate(
7865
7865
inplace = validate_bool_kwarg (inplace , "inplace" )
7866
7866
7867
7867
if inplace :
7868
- if not PYPY :
7868
+ if not PYPY and sys . version_info < ( 3 , 14 ) :
7869
7869
if sys .getrefcount (self ) <= REF_COUNT :
7870
7870
warnings .warn (
7871
7871
_chained_assignment_method_msg ,
@@ -8449,7 +8449,7 @@ def clip(
8449
8449
inplace = validate_bool_kwarg (inplace , "inplace" )
8450
8450
8451
8451
if inplace :
8452
- if not PYPY :
8452
+ if not PYPY and sys . version_info < ( 3 , 14 ) :
8453
8453
if sys .getrefcount (self ) <= REF_COUNT :
8454
8454
warnings .warn (
8455
8455
_chained_assignment_method_msg ,
@@ -10032,7 +10032,7 @@ def where(
10032
10032
"""
10033
10033
inplace = validate_bool_kwarg (inplace , "inplace" )
10034
10034
if inplace :
10035
- if not PYPY :
10035
+ if not PYPY and sys . version_info < ( 3 , 14 ) :
10036
10036
if sys .getrefcount (self ) <= REF_COUNT :
10037
10037
warnings .warn (
10038
10038
_chained_assignment_method_msg ,
@@ -10096,7 +10096,7 @@ def mask(
10096
10096
) -> Self | None :
10097
10097
inplace = validate_bool_kwarg (inplace , "inplace" )
10098
10098
if inplace :
10099
- if not PYPY :
10099
+ if not PYPY and sys . version_info < ( 3 , 14 ) :
10100
10100
if sys .getrefcount (self ) <= REF_COUNT :
10101
10101
warnings .warn (
10102
10102
_chained_assignment_method_msg ,
0 commit comments