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
322c0d18
Kaydet (Commit)
322c0d18
authored
Eki 07, 2001
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Only close sockets if they have been created. Reported by Blake Winton.
üst
fb163784
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
15 additions
and
6 deletions
+15
-6
ftplib.py
Lib/ftplib.py
+5
-2
httplib.py
Lib/httplib.py
+2
-1
poplib.py
Lib/poplib.py
+3
-1
smtplib.py
Lib/smtplib.py
+3
-1
telnetlib.py
Lib/telnetlib.py
+2
-1
No files found.
Lib/ftplib.py
Dosyayı görüntüle @
322c0d18
...
...
@@ -122,7 +122,8 @@ class FTP:
self
.
sock
=
socket
.
socket
(
af
,
socktype
,
proto
)
self
.
sock
.
connect
(
sa
)
except
socket
.
error
,
msg
:
self
.
sock
.
close
()
if
self
.
sock
:
self
.
sock
.
close
()
self
.
sock
=
None
continue
break
...
...
@@ -272,13 +273,15 @@ class FTP:
def
makeport
(
self
):
'''Create a new socket and send a PORT command for it.'''
msg
=
"getaddrinfo returns an empty list"
sock
=
None
for
res
in
socket
.
getaddrinfo
(
None
,
0
,
self
.
af
,
socket
.
SOCK_STREAM
,
0
,
socket
.
AI_PASSIVE
):
af
,
socktype
,
proto
,
canonname
,
sa
=
res
try
:
sock
=
socket
.
socket
(
af
,
socktype
,
proto
)
sock
.
bind
(
sa
)
except
socket
.
error
,
msg
:
sock
.
close
()
if
sock
:
sock
.
close
()
sock
=
None
continue
break
...
...
Lib/httplib.py
Dosyayı görüntüle @
322c0d18
...
...
@@ -368,7 +368,8 @@ class HTTPConnection:
except
socket
.
error
,
msg
:
if
self
.
debuglevel
>
0
:
print
'connect fail:'
,
(
self
.
host
,
self
.
port
)
self
.
sock
.
close
()
if
self
.
sock
:
self
.
sock
.
close
()
self
.
sock
=
None
continue
break
...
...
Lib/poplib.py
Dosyayı görüntüle @
322c0d18
...
...
@@ -76,13 +76,15 @@ class POP3:
self
.
host
=
host
self
.
port
=
port
msg
=
"getaddrinfo returns an empty list"
self
.
sock
=
None
for
res
in
socket
.
getaddrinfo
(
self
.
host
,
self
.
port
,
0
,
socket
.
SOCK_STREAM
):
af
,
socktype
,
proto
,
canonname
,
sa
=
res
try
:
self
.
sock
=
socket
.
socket
(
af
,
socktype
,
proto
)
self
.
sock
.
connect
(
sa
)
except
socket
.
error
,
msg
:
self
.
sock
.
close
()
if
self
.
sock
:
self
.
sock
.
close
()
self
.
sock
=
None
continue
break
...
...
Lib/smtplib.py
Dosyayı görüntüle @
322c0d18
...
...
@@ -265,6 +265,7 @@ class SMTP:
if
not
port
:
port
=
SMTP_PORT
if
self
.
debuglevel
>
0
:
print
'connect:'
,
(
host
,
port
)
msg
=
"getaddrinfo returns an empty list"
self
.
sock
=
None
for
res
in
socket
.
getaddrinfo
(
host
,
port
,
0
,
socket
.
SOCK_STREAM
):
af
,
socktype
,
proto
,
canonname
,
sa
=
res
try
:
...
...
@@ -273,7 +274,8 @@ class SMTP:
self
.
sock
.
connect
(
sa
)
except
socket
.
error
,
msg
:
if
self
.
debuglevel
>
0
:
print
'connect fail:'
,
(
host
,
port
)
self
.
sock
.
close
()
if
self
.
sock
:
self
.
sock
.
close
()
self
.
sock
=
None
continue
break
...
...
Lib/telnetlib.py
Dosyayı görüntüle @
322c0d18
...
...
@@ -210,7 +210,8 @@ class Telnet:
self
.
sock
=
socket
.
socket
(
af
,
socktype
,
proto
)
self
.
sock
.
connect
(
sa
)
except
socket
.
error
,
msg
:
self
.
sock
.
close
()
if
self
.
sock
:
self
.
sock
.
close
()
self
.
sock
=
None
continue
break
...
...
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