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
de91276a
Kaydet (Commit)
de91276a
authored
Mar 16, 2011
tarafından
R David Murray
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#11401: handle headers with no value.
üst
6d94bd47
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
1 deletion
+11
-1
header.py
Lib/email/header.py
+1
-1
test_email.py
Lib/email/test/test_email.py
+7
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/email/header.py
Dosyayı görüntüle @
de91276a
...
...
@@ -304,7 +304,7 @@ class Header:
self
.
_continuation_ws
,
splitchars
)
for
string
,
charset
in
self
.
_chunks
:
lines
=
string
.
splitlines
()
formatter
.
feed
(
lines
[
0
],
charset
)
formatter
.
feed
(
lines
[
0
]
if
lines
else
''
,
charset
)
for
line
in
lines
[
1
:]:
formatter
.
newline
()
if
charset
.
header_encoding
is
not
None
:
...
...
Lib/email/test/test_email.py
Dosyayı görüntüle @
de91276a
...
...
@@ -3296,6 +3296,13 @@ A very long line that must get split to something other than at the
h
=
Header
(
'文'
,
charset
=
'shift_jis'
)
self
.
assertEqual
(
h
.
encode
(),
'=?iso-2022-jp?b?GyRCSjgbKEI=?='
)
def
test_flatten_header_with_no_value
(
self
):
# Issue 11401 (regression from email 4.x) Note that the space after
# the header doesn't reflect the input, but this is also the way
# email 4.x behaved. At some point it would be nice to fix that.
msg
=
email
.
message_from_string
(
"EmptyHeader:"
)
self
.
assertEqual
(
str
(
msg
),
"EmptyHeader:
\n\n
"
)
# Test RFC 2231 header parameters (en/de)coding
...
...
Misc/NEWS
Dosyayı görüntüle @
de91276a
...
...
@@ -40,6 +40,9 @@ Core and Builtins
Library
-------
- Issue #11401: fix handling of headers with no value; this fixes a regression
relative to Python2 and the result is now the same as it was in Python2.
- Issue #9298: base64 bodies weren't being folded to line lengths less than 78,
which was a regression relative to Python2. Unlike Python2, the last line
of the folded body now ends with a carriage return.
...
...
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