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
2cae6613
Kaydet (Commit)
2cae6613
authored
May 21, 2019
tarafından
Batuhan Taşkaya
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-27737: Allow whitespace only headers encoding
üst
f665b96e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
1 deletion
+6
-1
header.py
Lib/email/header.py
+1
-1
test_email.py
Lib/test/test_email/test_email.py
+3
-0
2019-05-22-02-25-31.bpo-27737.7bgKpa.rst
...S.d/next/Library/2019-05-22-02-25-31.bpo-27737.7bgKpa.rst
+2
-0
No files found.
Lib/email/header.py
Dosyayı görüntüle @
2cae6613
...
...
@@ -431,7 +431,7 @@ class _ValueFormatter:
if
end_of_line
!=
(
' '
,
''
):
self
.
_current_line
.
push
(
*
end_of_line
)
if
len
(
self
.
_current_line
)
>
0
:
if
self
.
_current_line
.
is_onlyws
():
if
self
.
_current_line
.
is_onlyws
()
and
self
.
_lines
:
self
.
_lines
[
-
1
]
+=
str
(
self
.
_current_line
)
else
:
self
.
_lines
.
append
(
str
(
self
.
_current_line
))
...
...
Lib/test/test_email/test_email.py
Dosyayı görüntüle @
2cae6613
...
...
@@ -4964,6 +4964,9 @@ A very long line that must get split to something other than at the
msg
[
'SomeHeader'
]
=
' value with leading ws'
self
.
assertEqual
(
str
(
msg
),
"SomeHeader: value with leading ws
\n\n
"
)
def
test_whitespace_header
(
self
):
self
.
assertEqual
(
Header
(
' '
)
.
encode
(),
' '
)
# Test RFC 2231 header parameters (en/de)coding
...
...
Misc/NEWS.d/next/Library/2019-05-22-02-25-31.bpo-27737.7bgKpa.rst
0 → 100644
Dosyayı görüntüle @
2cae6613
Allow whitespace only header encoding in ``email.header`` - by Batuhan
Taskaya
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