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
01e46ee7
Kaydet (Commit)
01e46ee7
authored
Şub 08, 2014
tarafından
R David Murray
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge: #16983: Apply postel's law to encoded words inside quoted strings.
üst
ff9616bb
0400d339
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
29 additions
and
0 deletions
+29
-0
_header_value_parser.py
Lib/email/_header_value_parser.py
+7
-0
test__header_value_parser.py
Lib/test/test_email/test__header_value_parser.py
+9
-0
test_headerregistry.py
Lib/test/test_email/test_headerregistry.py
+10
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/email/_header_value_parser.py
Dosyayı görüntüle @
01e46ee7
...
...
@@ -1556,6 +1556,13 @@ def get_bare_quoted_string(value):
while
value
and
value
[
0
]
!=
'"'
:
if
value
[
0
]
in
WSP
:
token
,
value
=
get_fws
(
value
)
elif
value
[:
2
]
==
'=?'
:
try
:
token
,
value
=
get_encoded_word
(
value
)
bare_quoted_string
.
defects
.
append
(
errors
.
InvalidHeaderDefect
(
"encoded word inside quoted string"
))
except
errors
.
HeaderParseError
:
token
,
value
=
get_qcontent
(
value
)
else
:
token
,
value
=
get_qcontent
(
value
)
bare_quoted_string
.
append
(
token
)
...
...
Lib/test/test_email/test__header_value_parser.py
Dosyayı görüntüle @
01e46ee7
...
...
@@ -540,6 +540,15 @@ class TestParser(TestParserMixin, TestEmailBase):
self
.
_test_get_x
(
parser
.
get_bare_quoted_string
,
'""'
,
'""'
,
''
,
[],
''
)
# Issue 16983: apply postel's law to some bad encoding.
def
test_encoded_word_inside_quotes
(
self
):
self
.
_test_get_x
(
parser
.
get_bare_quoted_string
,
'"=?utf-8?Q?not_really_valid?="'
,
'"not really valid"'
,
'not really valid'
,
[
errors
.
InvalidHeaderDefect
],
''
)
# get_comment
def
test_get_comment_only
(
self
):
...
...
Lib/test/test_email/test_headerregistry.py
Dosyayı görüntüle @
01e46ee7
...
...
@@ -1155,6 +1155,16 @@ class TestAddressHeader(TestHeaderBase):
'example.com'
,
None
),
'rfc2047_atom_in_quoted_string_is_decoded'
:
(
'"=?utf-8?q?=C3=89ric?=" <foo@example.com>'
,
[
errors
.
InvalidHeaderDefect
],
'Éric <foo@example.com>'
,
'Éric'
,
'foo@example.com'
,
'foo'
,
'example.com'
,
None
),
}
# XXX: Need many more examples, and in particular some with names in
...
...
Misc/NEWS
Dosyayı görüntüle @
01e46ee7
...
...
@@ -27,6 +27,9 @@ Core and Builtins
Library
-------
- Issue #16983: the new email header parsing code will now decode encoded words
that are (incorrectly) surrounded by quotes, and register a defect.
- Issue #19772: email.generator no longer mutates the message object when
doing a down-transform from 8bit to 7bit CTEs.
...
...
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