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
5ccc18f2
Kaydet (Commit)
5ccc18f2
authored
Tem 30, 2015
tarafından
Robert Collins
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #23779: imaplib raises TypeError if authenticator tries to abort.
Patch from Craig Holmquist.
üst
30f1f672
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
24 additions
and
1 deletion
+24
-1
imaplib.py
Lib/imaplib.py
+1
-1
test_imaplib.py
Lib/test/test_imaplib.py
+19
-0
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/imaplib.py
Dosyayı görüntüle @
5ccc18f2
...
...
@@ -1306,7 +1306,7 @@ class _Authenticator:
def
process
(
self
,
data
):
ret
=
self
.
mech
(
self
.
decode
(
data
))
if
ret
is
None
:
return
'*'
# Abort conversation
return
b
'*'
# Abort conversation
return
self
.
encode
(
ret
)
def
encode
(
self
,
inp
):
...
...
Lib/test/test_imaplib.py
Dosyayı görüntüle @
5ccc18f2
...
...
@@ -325,6 +325,25 @@ class BaseThreadedNetworkedTests(unittest.TestCase):
self
.
assertEqual
(
ret
,
"OK"
)
@reap_threads
def
test_aborted_authentication
(
self
):
class
MyServer
(
SimpleIMAPHandler
):
def
cmd_AUTHENTICATE
(
self
,
tag
,
args
):
self
.
_send_textline
(
'+'
)
self
.
response
=
yield
if
self
.
response
==
b
'*
\r\n
'
:
self
.
_send_tagged
(
tag
,
'NO'
,
'[AUTHENTICATIONFAILED] aborted'
)
else
:
self
.
_send_tagged
(
tag
,
'OK'
,
'MYAUTH successful'
)
with
self
.
reaped_pair
(
MyServer
)
as
(
server
,
client
):
with
self
.
assertRaises
(
imaplib
.
IMAP4
.
error
):
code
,
data
=
client
.
authenticate
(
'MYAUTH'
,
lambda
x
:
None
)
def
test_linetoolong
(
self
):
class
TooLongHandler
(
SimpleIMAPHandler
):
def
handle
(
self
):
...
...
Misc/ACKS
Dosyayı görüntüle @
5ccc18f2
...
...
@@ -592,6 +592,7 @@ Gerrit Holl
Shane Holloway
Rune Holm
Thomas Holmes
Craig Holmquist
Philip Homburg
Naofumi Honda
Jeffrey Honig
...
...
Misc/NEWS
Dosyayı görüntüle @
5ccc18f2
...
...
@@ -66,6 +66,9 @@ Core and Builtins
Library
-------
-
Issue
#
23779
:
imaplib
raises
TypeError
if
authenticator
tries
to
abort
.
Patch
from
Craig
Holmquist
.
-
Issue
#
23319
:
Fix
ctypes
.
BigEndianStructure
,
swap
correctly
bytes
.
Patch
written
by
Matthieu
Gautier
.
...
...
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