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
448da718
Kaydet (Commit)
448da718
authored
Mar 21, 2010
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #3890: Fix recv() and recv_into() on non-blocking SSL sockets.
üst
56472c24
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
20 deletions
+8
-20
ssl.py
Lib/ssl.py
+6
-20
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/ssl.py
Dosyayı görüntüle @
448da718
...
...
@@ -210,16 +210,9 @@ class SSLSocket(socket):
if
self
.
_sslobj
:
if
flags
!=
0
:
raise
ValueError
(
"non-zero flags not allowed in calls to
sendall
() on
%
s"
%
"non-zero flags not allowed in calls to
recv
() on
%
s"
%
self
.
__class__
)
while
True
:
try
:
return
self
.
read
(
buflen
)
except
SSLError
,
x
:
if
x
.
args
[
0
]
==
SSL_ERROR_WANT_READ
:
continue
else
:
raise
x
return
self
.
read
(
buflen
)
else
:
return
socket
.
recv
(
self
,
buflen
,
flags
)
...
...
@@ -233,17 +226,10 @@ class SSLSocket(socket):
raise
ValueError
(
"non-zero flags not allowed in calls to recv_into() on
%
s"
%
self
.
__class__
)
while
True
:
try
:
tmp_buffer
=
self
.
read
(
nbytes
)
v
=
len
(
tmp_buffer
)
buffer
[:
v
]
=
tmp_buffer
return
v
except
SSLError
as
x
:
if
x
.
args
[
0
]
==
SSL_ERROR_WANT_READ
:
continue
else
:
raise
x
tmp_buffer
=
self
.
read
(
nbytes
)
v
=
len
(
tmp_buffer
)
buffer
[:
v
]
=
tmp_buffer
return
v
else
:
return
socket
.
recv_into
(
self
,
buffer
,
nbytes
,
flags
)
...
...
Misc/NEWS
Dosyayı görüntüle @
448da718
...
...
@@ -24,6 +24,8 @@ Core and Builtins
Library
-------
- Issue #3890: Fix recv() and recv_into() on non-blocking SSL sockets.
- Issue #8179: Fix macpath.realpath() on a non-existing path.
- Issue #8024: Update the Unicode database to 5.2.
...
...
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