File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -138,7 +138,7 @@ pandas 0.11.1
138
138
- added top-level ``pd.read_sql `` and ``to_sql `` DataFrame methods
139
139
- removed ``clipboard `` support to ``pandas.io.clipboard ``
140
140
- replace top-level and instance methods ``save `` and ``load `` with top-level ``read_pickle `` and
141
- ``to_pickle `` instance method, ``save `` and ``load `` will give deprecation warning until 0.12 .
141
+ ``to_pickle `` instance method, ``save `` and ``load `` will give deprecation warning.
142
142
- the ``method `` and ``axis `` arguments of ``DataFrame.replace() `` are
143
143
deprecated
144
144
- Implement ``__nonzero__ `` for ``NDFrame `` objects (GH3691 _, GH3696 _)
Original file line number Diff line number Diff line change @@ -2080,7 +2080,7 @@ def load(path): # TODO remove in 0.12
2080
2080
unpickled : type of object stored in file
2081
2081
"""
2082
2082
import warnings
2083
- warnings .warn ("load is deprecated and will be removed in v0.12 , use read_pickle" , FutureWarning )
2083
+ warnings .warn ("load is deprecated, use read_pickle" , FutureWarning )
2084
2084
from pandas .io .pickle import read_pickle
2085
2085
return read_pickle (path )
2086
2086
@@ -2095,6 +2095,6 @@ def save(obj, path): # TODO remove in 0.12
2095
2095
File path
2096
2096
'''
2097
2097
import warnings
2098
- warnings .warn ("save is deprecated and will be removed in v0.12 , use obj.to_pickle" , FutureWarning )
2098
+ warnings .warn ("save is deprecated, use obj.to_pickle" , FutureWarning )
2099
2099
from pandas .io .pickle import to_pickle
2100
2100
return to_pickle (obj , path )
Original file line number Diff line number Diff line change @@ -39,13 +39,13 @@ def to_pickle(self, path):
39
39
def save (self , path ): # TODO remove in 0.12
40
40
import warnings
41
41
from pandas .io .pickle import to_pickle
42
- warnings .warn ("save is deprecated and will be removed in v0.12 , use to_pickle" , FutureWarning )
42
+ warnings .warn ("save is deprecated, use to_pickle" , FutureWarning )
43
43
return to_pickle (self , path )
44
44
45
45
def load (self , path ): # TODO remove in 0.12
46
46
import warnings
47
47
from pandas .io .pickle import read_pickle
48
- warnings .warn ("load is deprecated and will be removed in v0.12 , use pd.read_pickle" , FutureWarning )
48
+ warnings .warn ("load is deprecated, use pd.read_pickle" , FutureWarning )
49
49
return read_pickle (path )
50
50
51
51
def __hash__ (self ):
You can’t perform that action at this time.
0 commit comments