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
81c87c5e
Kaydet (Commit)
81c87c5e
authored
Kas 10, 2010
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Followup to r86383: it seems that in some cases (buildbots), the server
closes the connection before we can call shutdown().
üst
1790ed2b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
3 deletions
+9
-3
imaplib.py
Lib/imaplib.py
+9
-3
No files found.
Lib/imaplib.py
Dosyayı görüntüle @
81c87c5e
...
@@ -22,7 +22,7 @@ Public functions: Internaldate2tuple
...
@@ -22,7 +22,7 @@ Public functions: Internaldate2tuple
__version__
=
"2.58"
__version__
=
"2.58"
import
binascii
,
random
,
re
,
socket
,
subprocess
,
sys
,
time
import
binascii
,
errno
,
random
,
re
,
socket
,
subprocess
,
sys
,
time
__all__
=
[
"IMAP4"
,
"IMAP4_stream"
,
"Internaldate2tuple"
,
__all__
=
[
"IMAP4"
,
"IMAP4_stream"
,
"Internaldate2tuple"
,
"Int2AP"
,
"ParseFlags"
,
"Time2Internaldate"
]
"Int2AP"
,
"ParseFlags"
,
"Time2Internaldate"
]
...
@@ -260,8 +260,14 @@ class IMAP4:
...
@@ -260,8 +260,14 @@ class IMAP4:
def
shutdown
(
self
):
def
shutdown
(
self
):
"""Close I/O established in "open"."""
"""Close I/O established in "open"."""
self
.
file
.
close
()
self
.
file
.
close
()
self
.
sock
.
shutdown
(
socket
.
SHUT_RDWR
)
try
:
self
.
sock
.
close
()
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
()
def
socket
(
self
):
def
socket
(
self
):
...
...
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