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
2f8f4d36
Kaydet (Commit)
2f8f4d36
authored
Eki 13, 2001
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
SMTPError should be SMTPException; reported by Neal Norwitz.
üst
f902296a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
smtplib.py
Lib/smtplib.py
+2
-2
No files found.
Lib/smtplib.py
Dosyayı görüntüle @
2f8f4d36
...
...
@@ -485,7 +485,7 @@ class SMTP:
the helo greeting.
SMTPAuthenticationError The server didn't accept the username/
password combination.
SMTPE
rror
No suitable authentication method was
SMTPE
xception
No suitable authentication method was
found.
"""
...
...
@@ -537,7 +537,7 @@ class SMTP:
(
code
,
resp
)
=
self
.
docmd
(
"AUTH"
,
AUTH_PLAIN
+
" "
+
encode_plain
(
user
,
password
))
elif
authmethod
==
None
:
raise
SMTPE
rror
(
"No suitable authentication method found."
)
raise
SMTPE
xception
(
"No suitable authentication method found."
)
if
code
not
in
[
235
,
503
]:
# 235 == 'Authentication successful'
# 503 == 'Error: already authenticated'
...
...
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