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
523b41c4
Kaydet (Commit)
523b41c4
authored
Mar 23, 2011
tarafından
R David Murray
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge #11590: fix quoprimime decode handling of empty strings and line endings.
üst
3d9e973a
cafd79d9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
3 deletions
+18
-3
quoprimime.py
Lib/email/quoprimime.py
+3
-3
test_email.py
Lib/email/test/test_email.py
+15
-0
No files found.
Lib/email/quoprimime.py
Dosyayı görüntüle @
523b41c4
...
...
@@ -135,9 +135,9 @@ def header_encode(header_bytes, charset='iso-8859-1'):
charset names the character set to use in the RFC 2046 header. It
defaults to iso-8859-1.
"""
# Return empty headers
unchanged
# Return empty headers
as an empty string.
if
not
header_bytes
:
return
str
(
header_bytes
)
return
''
# Iterate over every byte, encoding if necessary.
encoded
=
[]
for
octet
in
header_bytes
:
...
...
@@ -268,7 +268,7 @@ def decode(encoded, eol=NL):
if
i
==
n
:
decoded
+=
eol
# Special case if original string did not end with eol
if
not
encoded
.
endswith
(
eol
)
and
decoded
.
endswith
(
eol
):
if
encoded
[
-
1
]
not
in
'
\r\n
'
and
decoded
.
endswith
(
eol
):
decoded
=
decoded
[:
-
1
]
return
decoded
...
...
Lib/email/test/test_email.py
Dosyayı görüntüle @
523b41c4
...
...
@@ -3344,6 +3344,9 @@ class TestQuopri(unittest.TestCase):
encoded_header
=
quoprimime
.
header_encode
(
header
,
charset
)
self
.
assertEqual
(
encoded_header
,
expected_encoded_header
)
def
test_header_encode_null
(
self
):
self
.
_test_header_encode
(
b
''
,
''
)
def
test_header_encode_one_word
(
self
):
self
.
_test_header_encode
(
b
'hello'
,
'=?iso-8859-1?q?hello?='
)
...
...
@@ -3400,6 +3403,15 @@ class TestQuopri(unittest.TestCase):
def
test_decode_one_line_lf
(
self
):
self
.
_test_decode
(
'hello
\n
'
,
'hello
\n
'
)
def
test_decode_one_line_cr
(
self
):
self
.
_test_decode
(
'hello
\r
'
,
'hello
\n
'
)
def
test_decode_one_line_nl
(
self
):
self
.
_test_decode
(
'hello
\n
'
,
'helloX'
,
eol
=
'X'
)
def
test_decode_one_line_crnl
(
self
):
self
.
_test_decode
(
'hello
\r\n
'
,
'helloX'
,
eol
=
'X'
)
def
test_decode_one_line_one_word
(
self
):
self
.
_test_decode
(
'hello
\r\n
world'
,
'hello
\n
world'
)
...
...
@@ -3409,6 +3421,9 @@ class TestQuopri(unittest.TestCase):
def
test_decode_two_lines
(
self
):
self
.
_test_decode
(
'hello
\r\n
world
\r\n
'
,
'hello
\n
world
\n
'
)
def
test_decode_two_lines_eol
(
self
):
self
.
_test_decode
(
'hello
\r\n
world
\r\n
'
,
'helloXworldX'
,
eol
=
'X'
)
def
test_decode_one_long_line
(
self
):
self
.
_test_decode
(
'Spam'
*
250
,
'Spam'
*
250
)
...
...
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