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
31e984c3
Kaydet (Commit)
31e984c3
authored
Eki 01, 2010
tarafından
R. David Murray
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#10004: in Q encoded word ignore '=xx' when xx is not valid hex.
Bug report and fix by Thomas Guettler.
üst
9e88b5ae
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
1 deletion
+10
-1
quoprimime.py
Lib/email/quoprimime.py
+1
-1
test_email.py
Lib/email/test/test_email.py
+6
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/email/quoprimime.py
Dosyayı görüntüle @
31e984c3
...
...
@@ -294,4 +294,4 @@ def header_decode(s):
the high level email.header class for that functionality.
"""
s
=
s
.
replace
(
'_'
,
' '
)
return
re
.
sub
(
r'=
\w
{2}'
,
_unquote_match
,
s
,
re
.
ASCII
)
return
re
.
sub
(
r'=
[a-fA-F0-9]
{2}'
,
_unquote_match
,
s
,
re
.
ASCII
)
Lib/email/test/test_email.py
Dosyayı görüntüle @
31e984c3
...
...
@@ -1659,6 +1659,12 @@ Re: =?mac-iceland?q?r=8Aksm=9Arg=8Cs?= baz foo bar =?mac-iceland?q?r=8Aksm?=
dh
=
decode_header
(
s
%
q
)
self
.
assertEqual
(
dh
,
[(
a
,
'iso-8859-1'
)])
def
test_rfc2047_Q_invalid_digits
(
self
):
# issue 10004.
s
=
'=?iso-8659-1?Q?andr=e9=zz?='
self
.
assertEqual
(
decode_header
(
s
),
[(
b
'andr
\xe9
=zz'
,
'iso-8659-1'
)])
# Test the MIMEMessage class
class
TestMIMEMessage
(
TestEmailBase
):
...
...
Misc/NEWS
Dosyayı görüntüle @
31e984c3
...
...
@@ -79,6 +79,9 @@ Core and Builtins
Library
-------
- Issue #10004: quoprimime no longer generates a traceback when confronted
with invalid characters after '=' in a Q-encoded word.
- Issue #1491: BaseHTTPServer nows send a 100 Continue response before sending
a 200 OK for the Expect: 100-continue request header.
...
...
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