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
980f3149
Kaydet (Commit)
980f3149
authored
Haz 29, 2008
tarafından
Bill Janssen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fix bad method names in ssl module (and typo in ssl doc)
üst
4d45bfe4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
ssl.rst
Doc/library/ssl.rst
+1
-1
ssl.py
Lib/ssl.py
+6
-6
No files found.
Doc/library/ssl.rst
Dosyayı görüntüle @
980f3149
...
...
@@ -129,7 +129,7 @@ Functions, Constants, and Exceptions
method should signal unexpected EOF from the other end of the connection. If specified
as :const:`True` (the default), it returns a normal EOF in response to unexpected
EOF errors raised from the underlying socket; if :const:`False`, it will raise
the exceptions back the caller.
the exceptions back t
o t
he caller.
.. function:: RAND_status()
...
...
Lib/ssl.py
Dosyayı görüntüle @
980f3149
...
...
@@ -215,13 +215,13 @@ class SSLSocket(socket):
else
:
return
socket
.
send
(
self
,
data
,
flags
)
def
send
_
to
(
self
,
data
,
addr
,
flags
=
0
):
def
sendto
(
self
,
data
,
addr
,
flags
=
0
):
self
.
_checkClosed
()
if
self
.
_sslobj
:
raise
ValueError
(
"send
_
to not allowed on instances of
%
s"
%
raise
ValueError
(
"sendto not allowed on instances of
%
s"
%
self
.
__class__
)
else
:
return
socket
.
send
_
to
(
self
,
data
,
addr
,
flags
)
return
socket
.
sendto
(
self
,
data
,
addr
,
flags
)
def
sendall
(
self
,
data
,
flags
=
0
):
self
.
_checkClosed
()
...
...
@@ -276,13 +276,13 @@ class SSLSocket(socket):
else
:
return
socket
.
recv_into
(
self
,
buffer
,
nbytes
,
flags
)
def
recv
_
from
(
self
,
addr
,
buflen
=
1024
,
flags
=
0
):
def
recvfrom
(
self
,
addr
,
buflen
=
1024
,
flags
=
0
):
self
.
_checkClosed
()
if
self
.
_sslobj
:
raise
ValueError
(
"recv
_
from not allowed on instances of
%
s"
%
raise
ValueError
(
"recvfrom not allowed on instances of
%
s"
%
self
.
__class__
)
else
:
return
socket
.
recv
_
from
(
self
,
addr
,
buflen
,
flags
)
return
socket
.
recvfrom
(
self
,
addr
,
buflen
,
flags
)
def
pending
(
self
):
self
.
_checkClosed
()
...
...
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