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
d79f3c8b
Kaydet (Commit)
d79f3c8b
authored
Kas 09, 2010
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #4471: Properly shutdown socket in IMAP.shutdown(). Patch by
Lorenzo M. Catucci.
üst
b1436f18
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
0 deletions
+6
-0
imaplib.py
Lib/imaplib.py
+1
-0
test_imaplib.py
Lib/test/test_imaplib.py
+1
-0
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/imaplib.py
Dosyayı görüntüle @
d79f3c8b
...
...
@@ -260,6 +260,7 @@ class IMAP4:
def
shutdown
(
self
):
"""Close I/O established in "open"."""
self
.
file
.
close
()
self
.
sock
.
shutdown
(
socket
.
SHUT_RDWR
)
self
.
sock
.
close
()
...
...
Lib/test/test_imaplib.py
Dosyayı görüntüle @
d79f3c8b
...
...
@@ -217,6 +217,7 @@ class RemoteIMAPTest(unittest.TestCase):
def
test_logout
(
self
):
rs
=
self
.
server
.
logout
()
self
.
server
=
None
self
.
assertEqual
(
rs
[
0
],
'BYE'
)
...
...
Misc/ACKS
Dosyayı görüntüle @
d79f3c8b
...
...
@@ -130,6 +130,7 @@ Tony Campbell
Brett Cannon
Mike Carlton
Terry Carroll
Lorenzo M. Catucci
Donn Cave
Charles Cazabon
Per Cederqvist
...
...
Misc/NEWS
Dosyayı görüntüle @
d79f3c8b
...
...
@@ -60,6 +60,9 @@ Core and Builtins
Library
-------
- Issue #4471: Properly shutdown socket in IMAP.shutdown(). Patch by
Lorenzo M. Catucci.
- Fix IMAP.login() to work properly.
- Issue #9244: multiprocessing pool worker processes could terminate
...
...
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