@@ -568,14 +568,14 @@ def _wrap_array(self, arr, axes, copy=False):
568
568
def _verbose_info (self ):
569
569
import warnings
570
570
warnings .warn ('The _verbose_info property will be removed in version '
571
- '0.12 . please use "max_info_rows"' , FutureWarning )
571
+ '0.13 . please use "max_info_rows"' , FutureWarning )
572
572
return get_option ('display.max_info_rows' ) is None
573
573
574
574
@_verbose_info .setter
575
575
def _verbose_info (self , value ):
576
576
import warnings
577
577
warnings .warn ('The _verbose_info property will be removed in version '
578
- '0.12 . please use "max_info_rows"' , FutureWarning )
578
+ '0.13 . please use "max_info_rows"' , FutureWarning )
579
579
580
580
value = None if value else 1000000
581
581
set_option ('display.max_info_rows' , value )
@@ -3593,12 +3593,12 @@ def replace(self, to_replace=None, value=None, inplace=False, limit=None,
3593
3593
if method is not None :
3594
3594
from warnings import warn
3595
3595
warn ('the "method" argument is deprecated and will be removed in'
3596
- 'v0.12 ; this argument has no effect' )
3596
+ 'v0.13 ; this argument has no effect' )
3597
3597
3598
3598
if axis is not None :
3599
3599
from warnings import warn
3600
3600
warn ('the "axis" argument is deprecated and will be removed in'
3601
- 'v0.12 ; this argument has no effect' )
3601
+ 'v0.13 ; this argument has no effect' )
3602
3602
3603
3603
self ._consolidate_inplace ()
3604
3604
@@ -3733,7 +3733,7 @@ def interpolate(self, to_replace, method='pad', axis=0, inplace=False,
3733
3733
reindex, replace, fillna
3734
3734
"""
3735
3735
from warnings import warn
3736
- warn ('DataFrame.interpolate will be removed in v0.12 , please use '
3736
+ warn ('DataFrame.interpolate will be removed in v0.13 , please use '
3737
3737
'either DataFrame.fillna or DataFrame.replace instead' ,
3738
3738
FutureWarning )
3739
3739
if self ._is_mixed_type and axis == 1 :
0 commit comments