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
15d37394
Kaydet (Commit)
15d37394
authored
Tem 23, 2002
tarafından
Barry Warsaw
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
make_header(): Watch out for charset is None, which decode_header()
will return as the charset if implicit us-ascii is used.
üst
2d5389c0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
Header.py
Lib/email/Header.py
+2
-3
No files found.
Lib/email/Header.py
Dosyayı görüntüle @
15d37394
...
...
@@ -55,7 +55,6 @@ def decode_header(header):
header
=
str
(
header
)
if
not
ecre
.
search
(
header
):
return
[(
header
,
None
)]
decoded
=
[]
dec
=
''
for
line
in
header
.
splitlines
():
...
...
@@ -63,7 +62,6 @@ def decode_header(header):
if
not
ecre
.
search
(
line
):
decoded
.
append
((
line
,
None
))
continue
parts
=
ecre
.
split
(
line
)
while
parts
:
unenc
=
parts
.
pop
(
0
)
.
strip
()
...
...
@@ -108,7 +106,8 @@ def make_header(decoded_seq, maxlinelen=None, header_name=None,
h
=
Header
(
maxlinelen
=
maxlinelen
,
header_name
=
header_name
,
continuation_ws
=
continuation_ws
)
for
s
,
charset
in
decoded_seq
:
if
not
isinstance
(
charset
,
Charset
):
# None means us-ascii but we can simply pass it on to h.append()
if
charset
is
not
None
and
not
isinstance
(
charset
,
Charset
):
charset
=
Charset
(
charset
)
h
.
append
(
s
,
charset
)
return
h
...
...
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