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
ee07cb1d
Kaydet (Commit)
ee07cb1d
authored
Eki 10, 2002
tarafından
Barry Warsaw
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
get_content_charset(): RFC 2046 $4.1.2 says charsets are not case
sensitive. Coerce the argument to lower case.
üst
14fc464e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
Message.py
Lib/email/Message.py
+6
-4
No files found.
Lib/email/Message.py
Dosyayı görüntüle @
ee07cb1d
...
...
@@ -760,8 +760,9 @@ class Message:
def
get_content_charset
(
self
,
failobj
=
None
):
"""Return the charset parameter of the Content-Type header.
If there is no Content-Type header, or if that header has no charset
parameter, failobj is returned.
The returned string is always coerced to lower case. If there is no
Content-Type header, or if that header has no charset parameter,
failobj is returned.
"""
missing
=
[]
charset
=
self
.
get_param
(
'charset'
,
missing
)
...
...
@@ -769,8 +770,9 @@ class Message:
return
failobj
if
isinstance
(
charset
,
TupleType
):
# RFC 2231 encoded, so decode it, and it better end up as ascii.
return
unicode
(
charset
[
2
],
charset
[
0
])
.
encode
(
'us-ascii'
)
return
charset
charset
=
unicode
(
charset
[
2
],
charset
[
0
])
.
encode
(
'us-ascii'
)
# RFC 2046, $4.1.2 says charsets are not case sensitive
return
charset
.
lower
()
def
get_charsets
(
self
,
failobj
=
None
):
"""Return a list containing the charset(s) used in this message.
...
...
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