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
245b42ec
Kaydet (Commit)
245b42ec
authored
Agu 29, 2007
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Found a different, more direct way to disable ssl support until it's fixed.
üst
1b81e7be
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
10 deletions
+8
-10
socket.py
Lib/socket.py
+6
-6
ssl.py
Lib/ssl.py
+2
-0
test_socket_ssl.py
Lib/test/test_socket_ssl.py
+0
-2
test_ssl.py
Lib/test/test_ssl.py
+0
-2
No files found.
Lib/socket.py
Dosyayı görüntüle @
245b42ec
...
...
@@ -47,12 +47,12 @@ import _socket
from
_socket
import
*
_have_ssl
=
False
try
:
import
_ssl
from
_ssl
import
*
_have_ssl
=
True
except
ImportError
:
pass
##
try:
##
import _ssl
##
from _ssl import *
##
_have_ssl = True
##
except ImportError:
##
pass
import
os
,
sys
,
io
...
...
Lib/ssl.py
Dosyayı görüntüle @
245b42ec
# Wrapper module for _ssl, providing some additional facilities
# implemented in Python. Written by Bill Janssen.
raise
ImportError
(
"ssl.py is temporarily out of order"
)
"""
\
This module provides some more Pythonic support for SSL.
...
...
Lib/test/test_socket_ssl.py
Dosyayı görüntüle @
245b42ec
...
...
@@ -210,8 +210,6 @@ def test_main():
if
not
hasattr
(
socket
,
"ssl"
):
raise
test_support
.
TestSkipped
(
"socket module has no ssl support"
)
raise
test_support
.
TestSkipped
(
"Disabling this until ssl.py is fixed"
)
tests
=
[
BasicTests
]
if
test_support
.
is_resource_enabled
(
'network'
):
...
...
Lib/test/test_ssl.py
Dosyayı görüntüle @
245b42ec
...
...
@@ -338,8 +338,6 @@ def test_main(verbose=False):
if
skip_expected
:
raise
test_support
.
TestSkipped
(
"socket module has no ssl support"
)
raise
test_support
.
TestSkipped
(
"Disabling this until ssl.py is fixed"
)
global
CERTFILE
CERTFILE
=
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
)
or
os
.
curdir
,
"keycert.pem"
)
...
...
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