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
0a9f16b6
Kaydet (Commit)
0a9f16b6
authored
Haz 09, 2011
tarafından
R David Murray
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
merge #12283: Fixed regression in smtplib quoting of leading dots in DATA.
üst
bf353aad
0f663d07
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
1 deletion
+18
-1
smtplib.py
Lib/smtplib.py
+1
-1
test_smtplib.py
Lib/test/test_smtplib.py
+15
-0
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/smtplib.py
Dosyayı görüntüle @
0a9f16b6
...
...
@@ -162,7 +162,7 @@ def quotedata(data):
re
.
sub
(
r'(?:\r\n|\n|\r(?!\n))'
,
CRLF
,
data
))
def
_quote_periods
(
bindata
):
return
re
.
sub
(
br
'(?m)^
\
.'
,
'..'
,
bindata
)
return
re
.
sub
(
br
'(?m)^
\
.'
,
b
'..'
,
bindata
)
def
_fix_eols
(
data
):
return
re
.
sub
(
r'(?:\r\n|\n|\r(?!\n))'
,
CRLF
,
data
)
...
...
Lib/test/test_smtplib.py
Dosyayı görüntüle @
0a9f16b6
...
...
@@ -278,6 +278,21 @@ class DebuggingServerTests(unittest.TestCase):
mexpect
=
'
%
s
%
s
\n
%
s'
%
(
MSG_BEGIN
,
m
.
decode
(
'ascii'
),
MSG_END
)
self
.
assertEqual
(
self
.
output
.
getvalue
(),
mexpect
)
def
testSendNeedingDotQuote
(
self
):
# Issue 12283
m
=
'.A test
\n
.mes.sage.'
smtp
=
smtplib
.
SMTP
(
HOST
,
self
.
port
,
local_hostname
=
'localhost'
,
timeout
=
3
)
smtp
.
sendmail
(
'John'
,
'Sally'
,
m
)
# XXX (see comment in testSend)
time
.
sleep
(
0.01
)
smtp
.
quit
()
self
.
client_evt
.
set
()
self
.
serv_evt
.
wait
()
self
.
output
.
flush
()
mexpect
=
'
%
s
%
s
\n
%
s'
%
(
MSG_BEGIN
,
m
,
MSG_END
)
self
.
assertEqual
(
self
.
output
.
getvalue
(),
mexpect
)
def
testSendMessage
(
self
):
m
=
email
.
mime
.
text
.
MIMEText
(
'A test message'
)
smtp
=
smtplib
.
SMTP
(
HOST
,
self
.
port
,
local_hostname
=
'localhost'
,
timeout
=
3
)
...
...
Misc/NEWS
Dosyayı görüntüle @
0a9f16b6
...
...
@@ -187,6 +187,8 @@ Core and Builtins
Library
-------
- Issue #12283: Fixed regression in smtplib quoting of leading dots in DATA.
- Issue #10424: Argparse now includes the names of the missing required
arguments in the missing arguments error message.
...
...
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