@@ -568,14 +568,14 @@ def _wrap_array(self, arr, axes, copy=False):
568568 def _verbose_info (self ):
569569 import warnings
570570 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 )
572572 return get_option ('display.max_info_rows' ) is None
573573
574574 @_verbose_info .setter
575575 def _verbose_info (self , value ):
576576 import warnings
577577 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 )
579579
580580 value = None if value else 1000000
581581 set_option ('display.max_info_rows' , value )
@@ -3593,12 +3593,12 @@ def replace(self, to_replace=None, value=None, inplace=False, limit=None,
35933593 if method is not None :
35943594 from warnings import warn
35953595 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' )
35973597
35983598 if axis is not None :
35993599 from warnings import warn
36003600 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' )
36023602
36033603 self ._consolidate_inplace ()
36043604
@@ -3733,7 +3733,7 @@ def interpolate(self, to_replace, method='pad', axis=0, inplace=False,
37333733 reindex, replace, fillna
37343734 """
37353735 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 '
37373737 'either DataFrame.fillna or DataFrame.replace instead' ,
37383738 FutureWarning )
37393739 if self ._is_mixed_type and axis == 1 :
0 commit comments