We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
allow_pickle
1 parent 7010396 commit 6d0ba5fCopy full SHA for 6d0ba5f
1 file changed
python/ql/test/library-tests/frameworks/numpy/Decoding.py
@@ -1,4 +1,6 @@
1
import numpy
2
3
-numpy.load(file_) # $ decodeInput=file_ decodeOutput=numpy.load(..) decodeFormat=numpy decodeMayExecuteInput
4
-numpy.load(filename=file_) # $ decodeInput=file_ decodeOutput=numpy.load(..) decodeFormat=numpy decodeMayExecuteInput
+numpy.load(file_) # $ decodeInput=file_ decodeOutput=numpy.load(..) decodeFormat=numpy
+numpy.load(filename=file_) # $ decodeInput=file_ decodeOutput=numpy.load(..) decodeFormat=numpy
5
+numpy.load(file_, allow_pickle=True) # $ decodeInput=file_ decodeOutput=numpy.load(..) decodeFormat=numpy decodeMayExecuteInput
6
+numpy.load(filename=file_, allow_pickle=True) # $ decodeInput=file_ decodeOutput=numpy.load(..) decodeFormat=numpy decodeMayExecuteInput
0 commit comments