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
6f63190d
Kaydet (Commit)
6f63190d
authored
Ara 10, 2008
tarafından
Hirokazu Yamamoto
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #4302: Minor corrections to smtplib. (Backport r60975)
üst
478a1aa5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
smtplib.py
Lib/smtplib.py
+2
-2
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/smtplib.py
Dosyayı görüntüle @
6f63190d
...
...
@@ -315,7 +315,7 @@ class SMTP:
def
send
(
self
,
str
):
"""Send `str' to the server."""
if
self
.
debuglevel
>
0
:
print
>>
stderr
,
'send:'
,
repr
(
str
)
if
self
.
sock
:
if
hasattr
(
self
,
'sock'
)
and
self
.
sock
:
try
:
self
.
sock
.
sendall
(
str
)
except
socket
.
error
:
...
...
@@ -503,7 +503,7 @@ class SMTP:
vrfy
=
verify
def
expn
(
self
,
address
):
"""SMTP '
verify' command -- checks for address validity
."""
"""SMTP '
expn' command -- expands a mailing list
."""
self
.
putcmd
(
"expn"
,
quoteaddr
(
address
))
return
self
.
getreply
()
...
...
Misc/NEWS
Dosyayı görüntüle @
6f63190d
...
...
@@ -104,6 +104,8 @@ Core and builtins
Library
-------
- Issue #1776581 and #4302. Minor corrections to smtplib.
- Issue #3774: Fixed an error when create a Tkinter menu item without command
and then remove it.
...
...
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