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
c114cc86
Kaydet (Commit)
c114cc86
authored
Şub 11, 2013
tarafından
R David Murray
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#17171: backport behavior-confirming test from python3.
üst
f1d3473a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
1 deletion
+18
-1
test_email_renamed.py
Lib/email/test/test_email_renamed.py
+18
-1
No files found.
Lib/email/test/test_email_renamed.py
Dosyayı görüntüle @
c114cc86
...
...
@@ -994,7 +994,24 @@ class TestMIMEApplication(unittest.TestCase):
eq
(
msg
.
get_payload
(),
'+vv8/f7/'
)
eq
(
msg
.
get_payload
(
decode
=
True
),
bytes
)
def
test_body_with_encode_noop
(
self
):
def
test_binary_body_with_encode_7or8bit
(
self
):
# Issue 17171.
bytesdata
=
b
'
\xfa\xfb\xfc\xfd\xfe\xff
'
msg
=
MIMEApplication
(
bytesdata
,
_encoder
=
encoders
.
encode_7or8bit
)
# Treated as a string, this will be invalid code points.
self
.
assertEqual
(
msg
.
get_payload
(),
bytesdata
)
self
.
assertEqual
(
msg
.
get_payload
(
decode
=
True
),
bytesdata
)
self
.
assertEqual
(
msg
[
'Content-Transfer-Encoding'
],
'8bit'
)
s
=
StringIO
()
g
=
Generator
(
s
)
g
.
flatten
(
msg
)
wireform
=
s
.
getvalue
()
msg2
=
email
.
message_from_string
(
wireform
)
self
.
assertEqual
(
msg
.
get_payload
(),
bytesdata
)
self
.
assertEqual
(
msg2
.
get_payload
(
decode
=
True
),
bytesdata
)
self
.
assertEqual
(
msg2
[
'Content-Transfer-Encoding'
],
'8bit'
)
def
test_binary_body_with_encode_noop
(
self
):
# Issue 16564: This does not produce an RFC valid message, since to be
# valid it should have a CTE of binary. But the below works, and is
# documented as working this way.
...
...
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