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
5dda1249
Kaydet (Commit)
5dda1249
authored
Mar 06, 2014
tarafından
R David Murray
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#11558: Better message if attach called on non-multipart.
Original patch by Varun Sharma.
üst
733e50ad
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
1 deletion
+18
-1
message.py
Lib/email/message.py
+5
-1
test_email.py
Lib/test/test_email/test_email.py
+8
-0
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+4
-0
No files found.
Lib/email/message.py
Dosyayı görüntüle @
5dda1249
...
@@ -203,7 +203,11 @@ class Message:
...
@@ -203,7 +203,11 @@ class Message:
if
self
.
_payload
is
None
:
if
self
.
_payload
is
None
:
self
.
_payload
=
[
payload
]
self
.
_payload
=
[
payload
]
else
:
else
:
self
.
_payload
.
append
(
payload
)
try
:
self
.
_payload
.
append
(
payload
)
except
AttributeError
:
raise
TypeError
(
"Attach is not valid on a message with a"
" non-multipart payload"
)
def
get_payload
(
self
,
i
=
None
,
decode
=
False
):
def
get_payload
(
self
,
i
=
None
,
decode
=
False
):
"""Return a reference to the payload.
"""Return a reference to the payload.
...
...
Lib/test/test_email/test_email.py
Dosyayı görüntüle @
5dda1249
...
@@ -124,6 +124,14 @@ class TestMessageAPI(TestEmailBase):
...
@@ -124,6 +124,14 @@ class TestMessageAPI(TestEmailBase):
msg
.
set_payload
([])
msg
.
set_payload
([])
self
.
assertEqual
(
msg
.
get_payload
(),
[])
self
.
assertEqual
(
msg
.
get_payload
(),
[])
def
test_attach_when_payload_is_string
(
self
):
msg
=
Message
()
msg
[
'Content-Type'
]
=
'multipart/mixed'
msg
.
set_payload
(
'string payload'
)
sub_msg
=
MIMEMessage
(
Message
())
self
.
assertRaisesRegex
(
TypeError
,
"[Aa]ttach.*non-multipart"
,
msg
.
attach
,
sub_msg
)
def
test_get_charsets
(
self
):
def
test_get_charsets
(
self
):
eq
=
self
.
assertEqual
eq
=
self
.
assertEqual
...
...
Misc/ACKS
Dosyayı görüntüle @
5dda1249
...
@@ -1188,6 +1188,7 @@ Daniel Shahaf
...
@@ -1188,6 +1188,7 @@ Daniel Shahaf
Ha Shao
Ha Shao
Mark Shannon
Mark Shannon
Richard Shapiro
Richard Shapiro
Varun Sharma
Vlad Shcherbina
Vlad Shcherbina
Justin Sheehy
Justin Sheehy
Charlie Shepherd
Charlie Shepherd
...
...
Misc/NEWS
Dosyayı görüntüle @
5dda1249
...
@@ -20,6 +20,10 @@ Core and Builtins
...
@@ -20,6 +20,10 @@ Core and Builtins
Library
Library
-------
-------
- Issue #11558: ``email.message.Message.attach`` now returns a more
useful error message if ``attach`` is called on a message for which
``is_multipart`` is False.
- Issue #20283: RE pattern methods now accept the string keyword parameters
- Issue #20283: RE pattern methods now accept the string keyword parameters
as documented. The pattern and source keyword parameters are left as
as documented. The pattern and source keyword parameters are left as
deprecated aliases.
deprecated aliases.
...
...
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