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
0c092931
Kaydet (Commit)
0c092931
authored
Haz 23, 2002
tarafından
Piers Lauder
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix IMAP4_SSL read and send methods to take account of short data
üst
723f94bd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
3 deletions
+16
-3
imaplib.py
Lib/imaplib.py
+16
-3
No files found.
Lib/imaplib.py
Dosyayı görüntüle @
0c092931
...
...
@@ -18,7 +18,7 @@ Public functions: Internaldate2tuple
# IMAP4_SSL contributed by Tino Lange <Tino.Lange@isg.de> March 2002.
# GET/SETQUOTA contributed by Andreas Zeidler <az@kreativkombinat.de> June 2002.
__version__
=
"2.5
2
"
__version__
=
"2.5
3
"
import
binascii
,
re
,
socket
,
time
,
random
,
sys
...
...
@@ -1056,11 +1056,17 @@ class IMAP4_SSL(IMAP4):
def
read
(
self
,
size
):
"""Read 'size' bytes from remote."""
return
self
.
sslobj
.
read
(
size
)
# sslobj.read() sometimes returns < size bytes
data
=
self
.
sslobj
.
read
(
size
)
while
len
(
data
)
<
size
:
data
+=
self
.
sslobj
.
read
(
len
(
data
)
-
size
)
return
data
def
readline
(
self
):
"""Read line from remote."""
# NB: socket.ssl needs a "readline" method, or perhaps a "makefile" method.
line
=
""
while
1
:
char
=
self
.
sslobj
.
read
(
1
)
...
...
@@ -1070,7 +1076,14 @@ class IMAP4_SSL(IMAP4):
def
send
(
self
,
data
):
"""Send data to remote."""
self
.
sslobj
.
write
(
data
)
# NB: socket.ssl needs a "sendall" method to match socket objects.
bytes
=
len
(
data
)
while
bytes
>
0
:
sent
=
self
.
sslobj
.
write
(
data
)
if
sent
==
bytes
:
break
# avoid copy
data
=
data
[
sent
:]
bytes
=
bytes
-
sent
def
shutdown
(
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