Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
33bc4a29
Kaydet (Commit)
33bc4a29
authored
May 26, 2016
tarafından
Steve Dower
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #27114: Fix SSLContext._load_windows_store_certs fails with PermissionError
üst
b22c7089
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
5 deletions
+12
-5
ssl.py
Lib/ssl.py
+9
-5
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/ssl.py
Dosyayı görüntüle @
33bc4a29
...
...
@@ -145,6 +145,7 @@ from socket import socket, AF_INET, SOCK_STREAM, create_connection
from
socket
import
SOL_SOCKET
,
SO_TYPE
import
base64
# for DER-to-PEM translation
import
errno
import
warnings
socket_error
=
OSError
# keep that public name in module namespace
...
...
@@ -405,11 +406,14 @@ class SSLContext(_SSLContext):
def
_load_windows_store_certs
(
self
,
storename
,
purpose
):
certs
=
bytearray
()
for
cert
,
encoding
,
trust
in
enum_certificates
(
storename
):
# CA certs are never PKCS#7 encoded
if
encoding
==
"x509_asn"
:
if
trust
is
True
or
purpose
.
oid
in
trust
:
certs
.
extend
(
cert
)
try
:
for
cert
,
encoding
,
trust
in
enum_certificates
(
storename
):
# CA certs are never PKCS#7 encoded
if
encoding
==
"x509_asn"
:
if
trust
is
True
or
purpose
.
oid
in
trust
:
certs
.
extend
(
cert
)
except
PermissionError
:
warnings
.
warn
(
"unable to enumerate Windows certificate store"
)
if
certs
:
self
.
load_verify_locations
(
cadata
=
certs
)
return
certs
...
...
Misc/NEWS
Dosyayı görüntüle @
33bc4a29
...
...
@@ -126,6 +126,9 @@ Core and Builtins
Library
-------
- Issue #27114: Fix SSLContext._load_windows_store_certs fails with
PermissionError
- Issue #18383: Avoid creating duplicate filters when using filterwarnings
and simplefilter. Based on patch by Alex Shkop.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment