1- Run started:2026-01-02 18:18:51.008857
1+ Run started:2026-01-16 17:44:39.385108+00:00
22
33Test results:
44>> Issue: [B403:blacklist] Consider possible security implications associated with pickle module.
55 Severity: Low Confidence: High
66 CWE: CWE-502 (https://cwe.mitre.org/data/definitions/502.html)
7- More Info: https://bandit.readthedocs.io/en/1.7.7 /blacklists/blacklist_imports.html#b403-import-pickle
7+ More Info: https://bandit.readthedocs.io/en/1.9.2 /blacklists/blacklist_imports.html#b403-import-pickle
88 Location: ./copulas/multivariate/base.py:3:0
992
10103 import pickle
@@ -14,7 +14,7 @@ Test results:
1414>> Issue: [B301:blacklist] Pickle and modules that wrap it can be unsafe when used to deserialize untrusted data, possible security issue.
1515 Severity: Medium Confidence: High
1616 CWE: CWE-502 (https://cwe.mitre.org/data/definitions/502.html)
17- More Info: https://bandit.readthedocs.io/en/1.7.7 /blacklists/blacklist_calls.html#b301-pickle
17+ More Info: https://bandit.readthedocs.io/en/1.9.2 /blacklists/blacklist_calls.html#b301-pickle
1818 Location: ./copulas/multivariate/base.py:178:19
1919177 with open(path, 'rb') as pickle_file:
2020178 return pickle.load(pickle_file)
@@ -24,7 +24,7 @@ Test results:
2424>> Issue: [B101:assert_used] Use of assert detected. The enclosed code will be removed when compiling to optimised byte code.
2525 Severity: Low Confidence: High
2626 CWE: CWE-703 (https://cwe.mitre.org/data/definitions/703.html)
27- More Info: https://bandit.readthedocs.io/en/1.7.7 /plugins/b101_assert_used.html
27+ More Info: https://bandit.readthedocs.io/en/1.9.2 /plugins/b101_assert_used.html
2828 Location: ./copulas/optimize/__init__.py:26:4
292925 """
303026 assert (f(xmin) <= 0.0).all()
@@ -34,7 +34,7 @@ Test results:
3434>> Issue: [B101:assert_used] Use of assert detected. The enclosed code will be removed when compiling to optimised byte code.
3535 Severity: Low Confidence: High
3636 CWE: CWE-703 (https://cwe.mitre.org/data/definitions/703.html)
37- More Info: https://bandit.readthedocs.io/en/1.7.7 /plugins/b101_assert_used.html
37+ More Info: https://bandit.readthedocs.io/en/1.9.2 /plugins/b101_assert_used.html
3838 Location: ./copulas/optimize/__init__.py:27:4
393926 assert (f(xmin) <= 0.0).all()
404027 assert (f(xmax) >= 0.0).all()
@@ -44,7 +44,7 @@ Test results:
4444>> Issue: [B101:assert_used] Use of assert detected. The enclosed code will be removed when compiling to optimised byte code.
4545 Severity: Low Confidence: High
4646 CWE: CWE-703 (https://cwe.mitre.org/data/definitions/703.html)
47- More Info: https://bandit.readthedocs.io/en/1.7.7 /plugins/b101_assert_used.html
47+ More Info: https://bandit.readthedocs.io/en/1.9.2 /plugins/b101_assert_used.html
4848 Location: ./copulas/optimize/__init__.py:71:4
494970 shape = np.shape(fa)
505071 assert shape == np.shape(fb)
@@ -54,7 +54,7 @@ Test results:
5454>> Issue: [B101:assert_used] Use of assert detected. The enclosed code will be removed when compiling to optimised byte code.
5555 Severity: Low Confidence: High
5656 CWE: CWE-703 (https://cwe.mitre.org/data/definitions/703.html)
57- More Info: https://bandit.readthedocs.io/en/1.7.7 /plugins/b101_assert_used.html
57+ More Info: https://bandit.readthedocs.io/en/1.9.2 /plugins/b101_assert_used.html
5858 Location: ./copulas/optimize/__init__.py:77:4
595976 # Make sure we are bracketing a root in each case
606077 assert (np.sign(fa) * np.sign(fb) <= 0).all()
@@ -64,7 +64,7 @@ Test results:
6464>> Issue: [B403:blacklist] Consider possible security implications associated with pickle module.
6565 Severity: Low Confidence: High
6666 CWE: CWE-502 (https://cwe.mitre.org/data/definitions/502.html)
67- More Info: https://bandit.readthedocs.io/en/1.7.7 /blacklists/blacklist_imports.html#b403-import-pickle
67+ More Info: https://bandit.readthedocs.io/en/1.9.2 /blacklists/blacklist_imports.html#b403-import-pickle
6868 Location: ./copulas/univariate/base.py:3:0
69692
70703 import pickle
@@ -74,7 +74,7 @@ Test results:
7474>> Issue: [B301:blacklist] Pickle and modules that wrap it can be unsafe when used to deserialize untrusted data, possible security issue.
7575 Severity: Medium Confidence: High
7676 CWE: CWE-502 (https://cwe.mitre.org/data/definitions/502.html)
77- More Info: https://bandit.readthedocs.io/en/1.7.7 /blacklists/blacklist_calls.html#b301-pickle
77+ More Info: https://bandit.readthedocs.io/en/1.9.2 /blacklists/blacklist_calls.html#b301-pickle
7878 Location: ./copulas/univariate/base.py:488:19
7979487 with open(path, 'rb') as pickle_file:
8080488 return pickle.load(pickle_file)
@@ -84,7 +84,7 @@ Test results:
8484>> Issue: [B110:try_except_pass] Try, Except, Pass detected.
8585 Severity: Low Confidence: High
8686 CWE: CWE-703 (https://cwe.mitre.org/data/definitions/703.html)
87- More Info: https://bandit.readthedocs.io/en/1.7.7 /plugins/b110_try_except_pass.html
87+ More Info: https://bandit.readthedocs.io/en/1.9.2 /plugins/b110_try_except_pass.html
8888 Location: ./copulas/univariate/selection.py:32:8
898931 best_model = model
909032 except Exception:
0 commit comments