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
52035a04
Kaydet (Commit)
52035a04
authored
May 15, 2009
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #1655: Make imaplib IPv6-capable. Patch by Derek Morr.
üst
490096e7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
imaplib.py
Lib/imaplib.py
+2
-4
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/imaplib.py
Dosyayı görüntüle @
52035a04
...
@@ -226,8 +226,7 @@ class IMAP4:
...
@@ -226,8 +226,7 @@ class IMAP4:
"""
"""
self
.
host
=
host
self
.
host
=
host
self
.
port
=
port
self
.
port
=
port
self
.
sock
=
socket
.
socket
(
socket
.
AF_INET
,
socket
.
SOCK_STREAM
)
self
.
sock
=
socket
.
create_connection
((
host
,
port
))
self
.
sock
.
connect
((
host
,
port
))
self
.
file
=
self
.
sock
.
makefile
(
'rb'
)
self
.
file
=
self
.
sock
.
makefile
(
'rb'
)
...
@@ -1145,8 +1144,7 @@ else:
...
@@ -1145,8 +1144,7 @@ else:
"""
"""
self
.
host
=
host
self
.
host
=
host
self
.
port
=
port
self
.
port
=
port
self
.
sock
=
socket
.
socket
(
socket
.
AF_INET
,
socket
.
SOCK_STREAM
)
self
.
sock
=
socket
.
create_connection
((
host
,
port
))
self
.
sock
.
connect
((
host
,
port
))
self
.
sslobj
=
ssl
.
wrap_socket
(
self
.
sock
,
self
.
keyfile
,
self
.
certfile
)
self
.
sslobj
=
ssl
.
wrap_socket
(
self
.
sock
,
self
.
keyfile
,
self
.
certfile
)
...
...
Misc/NEWS
Dosyayı görüntüle @
52035a04
...
@@ -293,6 +293,8 @@ Core and Builtins
...
@@ -293,6 +293,8 @@ Core and Builtins
Library
Library
-------
-------
- Issue #1655: Make imaplib IPv6-capable. Patch by Derek Morr.
- Issue #5918: Fix a crash in the parser module.
- Issue #5918: Fix a crash in the parser module.
- Issue #1664: Make nntplib IPv6-capable. Patch by Derek Morr.
- Issue #1664: Make nntplib IPv6-capable. Patch by Derek Morr.
...
...
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