From e643de862851481bda9a5904077be29a1121cd09 Mon Sep 17 00:00:00 2001 From: Eric Brown Date: Sun, 10 Mar 2024 20:37:55 -0700 Subject: [PATCH] Create create_unverified_context.py Signed-off-by: Eric Brown --- python/stdlib/create_unverified_context.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 python/stdlib/create_unverified_context.py diff --git a/python/stdlib/create_unverified_context.py b/python/stdlib/create_unverified_context.py new file mode 100644 index 0000000..c4b3e22 --- /dev/null +++ b/python/stdlib/create_unverified_context.py @@ -0,0 +1,4 @@ +import ssl + + +context = ssl._create_unverified_context()