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
8fe9eed9
Kaydet (Commit)
8fe9eed9
authored
Tem 28, 2018
tarafından
Dong-hee Na
Kaydeden (comit)
Steve Dower
Tem 28, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-33476: Fix _header_value_parser when address group is missing final ';' (GH-7484)
üst
1d2dafa2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
28 additions
and
1 deletion
+28
-1
_header_value_parser.py
Lib/email/_header_value_parser.py
+1
-1
test__header_value_parser.py
Lib/test/test_email/test__header_value_parser.py
+25
-0
2018-06-08-00-29-40.bpo-33476.R0Bhlj.rst
...S.d/next/Library/2018-06-08-00-29-40.bpo-33476.R0Bhlj.rst
+2
-0
No files found.
Lib/email/_header_value_parser.py
Dosyayı görüntüle @
8fe9eed9
...
...
@@ -1875,7 +1875,7 @@ def get_group(value):
if
not
value
:
group
.
defects
.
append
(
errors
.
InvalidHeaderDefect
(
"end of header in group"
))
if
value
[
0
]
!=
';'
:
el
if
value
[
0
]
!=
';'
:
raise
errors
.
HeaderParseError
(
"expected ';' at end of group but found {}"
.
format
(
value
))
group
.
append
(
ValueTerminal
(
';'
,
'group-terminator'
))
...
...
Lib/test/test_email/test__header_value_parser.py
Dosyayı görüntüle @
8fe9eed9
...
...
@@ -2152,6 +2152,31 @@ class TestParser(TestParserMixin, TestEmailBase):
self
.
assertEqual
(
group
.
mailboxes
[
1
]
.
local_part
,
'x'
)
self
.
assertIsNone
(
group
.
all_mailboxes
[
1
]
.
display_name
)
def
test_get_group_missing_final_semicol
(
self
):
group
=
self
.
_test_get_x
(
parser
.
get_group
,
(
'Monty Python:"Fred A. Bear" <dinsdale@example.com>,'
'eric@where.test,John <jdoe@test>'
),
(
'Monty Python:"Fred A. Bear" <dinsdale@example.com>,'
'eric@where.test,John <jdoe@test>;'
),
(
'Monty Python:"Fred A. Bear" <dinsdale@example.com>,'
'eric@where.test,John <jdoe@test>;'
),
[
errors
.
InvalidHeaderDefect
],
''
)
self
.
assertEqual
(
group
.
token_type
,
'group'
)
self
.
assertEqual
(
group
.
display_name
,
'Monty Python'
)
self
.
assertEqual
(
len
(
group
.
mailboxes
),
3
)
self
.
assertEqual
(
group
.
mailboxes
,
group
.
all_mailboxes
)
self
.
assertEqual
(
group
.
mailboxes
[
0
]
.
addr_spec
,
'dinsdale@example.com'
)
self
.
assertEqual
(
group
.
mailboxes
[
0
]
.
display_name
,
'Fred A. Bear'
)
self
.
assertEqual
(
group
.
mailboxes
[
1
]
.
addr_spec
,
'eric@where.test'
)
self
.
assertEqual
(
group
.
mailboxes
[
2
]
.
display_name
,
'John'
)
self
.
assertEqual
(
group
.
mailboxes
[
2
]
.
addr_spec
,
'jdoe@test'
)
# get_address
def
test_get_address_simple
(
self
):
...
...
Misc/NEWS.d/next/Library/2018-06-08-00-29-40.bpo-33476.R0Bhlj.rst
0 → 100644
Dosyayı görüntüle @
8fe9eed9
Fix _header_value_parser.py when address group is missing final ';'.
Contributed by Enrique Perez-Terron
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