File tree 2 files changed +10
-0
lines changed
2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -1226,6 +1226,13 @@ There is also a ``save`` function which takes any object as its first argument:
1226
1226
import os
1227
1227
os.remove(' foo.pickle' )
1228
1228
1229
+ .. warning ::
1230
+
1231
+ Loading pickled data received from untrusted sources can be unsafe.
1232
+
1233
+ See: http://docs.python.org/2.7/library/pickle.html
1234
+
1235
+
1229
1236
Working with package options
1230
1237
----------------------------
1231
1238
Original file line number Diff line number Diff line change @@ -1573,6 +1573,9 @@ def load(path):
1573
1573
Load pickled pandas object (or any other pickled object) from the specified
1574
1574
file path
1575
1575
1576
+ Warning: Loading pickled data received from untrusted sources can be unsafe.
1577
+ See: http://docs.python.org/2.7/library/pickle.html
1578
+
1576
1579
Parameters
1577
1580
----------
1578
1581
path : string
You can’t perform that action at this time.
0 commit comments