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
5360d003
Kaydet (Commit)
5360d003
authored
Ara 27, 2010
tarafından
R. David Murray
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#1379416: encode charset name to ascii to avoid unicode promotion of output
üst
49ee82c4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
1 deletion
+11
-1
charset.py
Lib/email/charset.py
+1
-1
test_email.py
Lib/email/test/test_email.py
+7
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/email/charset.py
Dosyayı görüntüle @
5360d003
...
...
@@ -209,7 +209,7 @@ class Charset:
input_charset
=
unicode
(
input_charset
,
'ascii'
)
except
UnicodeError
:
raise
errors
.
CharsetError
(
input_charset
)
input_charset
=
input_charset
.
lower
()
input_charset
=
input_charset
.
lower
()
.
encode
(
'ascii'
)
# Set the input charset after filtering through the aliases and/or codecs
if
not
(
input_charset
in
ALIASES
or
input_charset
in
CHARSETS
):
try
:
...
...
Lib/email/test/test_email.py
Dosyayı görüntüle @
5360d003
...
...
@@ -3140,6 +3140,13 @@ A very long line that must get split to something other than at the
'attachment; filename*="iso-8859-1
\'\'
Fu
%
DFballer.ppt"'
,
msg
[
'Content-Disposition'
])
def
test_encode_unaliased_charset
(
self
):
# Issue 1379416: when the charset has no output conversion,
# output was accidentally getting coerced to unicode.
res
=
Header
(
'abc'
,
'iso-8859-2'
)
.
encode
()
self
.
assertEqual
(
res
,
'=?iso-8859-2?q?abc?='
)
self
.
assertIsInstance
(
res
,
str
)
# Test RFC 2231 header parameters (en/de)coding
class
TestRFC2231
(
TestEmailBase
):
...
...
Misc/NEWS
Dosyayı görüntüle @
5360d003
...
...
@@ -22,6 +22,9 @@ Core and Builtins
Library
-------
- Issue #1379416: eliminated a source of accidental unicode promotion in
email.header.Header.encode.
- Issue #5258/#10642: if site.py encounters a .pth file that generates an error,
it now prints the filename, line number, and traceback to stderr and skips
the rest of that individual file, instead of stopping processing entirely.
...
...
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