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
d89824b0
Kaydet (Commit)
d89824b0
authored
Kas 23, 2012
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #4473: Ensure the socket is shutdown cleanly in POP3.close().
Patch by Lorenzo Catucci.
üst
ff790aac
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
poplib.py
Lib/poplib.py
+8
-1
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/poplib.py
Dosyayı görüntüle @
d89824b0
...
...
@@ -259,7 +259,14 @@ class POP3:
if
self
.
file
is
not
None
:
self
.
file
.
close
()
if
self
.
sock
is
not
None
:
self
.
sock
.
close
()
try
:
self
.
sock
.
shutdown
(
socket
.
SHUT_RDWR
)
except
socket
.
error
as
e
:
# The server might already have closed the connection
if
e
.
errno
!=
errno
.
ENOTCONN
:
raise
finally
:
self
.
sock
.
close
()
self
.
file
=
self
.
sock
=
None
#__del__ = quit
...
...
Misc/NEWS
Dosyayı görüntüle @
d89824b0
...
...
@@ -138,6 +138,9 @@ Core and Builtins
Library
-------
- Issue #4473: Ensure the socket is shutdown cleanly in POP3.close().
Patch by Lorenzo Catucci.
- Issue #16522: added FAIL_FAST flag to doctest.
- Issue #15627: Add the importlib.abc.SourceLoader.compile_source() method.
...
...
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