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
2a99d5df
Kaydet (Commit)
2a99d5df
authored
Tem 06, 2013
tarafından
Ezio Melotti
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#18380: pass regex flags to the right argument. Patch by Valentina Mukhamedzhanova.
üst
5f3fef37
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
1 deletion
+6
-1
quoprimime.py
Lib/email/quoprimime.py
+1
-1
test_email.py
Lib/test/test_email/test_email.py
+4
-0
ACKS
Misc/ACKS
+1
-0
No files found.
Lib/email/quoprimime.py
Dosyayı görüntüle @
2a99d5df
...
...
@@ -319,4 +319,4 @@ def header_decode(s):
the high level email.header class for that functionality.
"""
s
=
s
.
replace
(
'_'
,
' '
)
return
re
.
sub
(
r'=[a-fA-F0-9]{2}'
,
_unquote_match
,
s
,
re
.
ASCII
)
return
re
.
sub
(
r'=[a-fA-F0-9]{2}'
,
_unquote_match
,
s
,
flags
=
re
.
ASCII
)
Lib/test/test_email/test_email.py
Dosyayı görüntüle @
2a99d5df
...
...
@@ -4048,6 +4048,10 @@ class TestQuopri(unittest.TestCase):
def
test_header_decode_non_ascii
(
self
):
self
.
_test_header_decode
(
'hello=C7there'
,
'hello
\xc7
there'
)
def
test_header_decode_re_bug_18380
(
self
):
# Issue 18380: Call re.sub with a positional argument for flags in the wrong position
self
.
assertEqual
(
quoprimime
.
header_decode
(
'=30'
*
257
),
'0'
*
257
)
def
_test_decode
(
self
,
encoded
,
expected_decoded
,
eol
=
None
):
if
eol
is
None
:
decoded
=
quoprimime
.
decode
(
encoded
)
...
...
Misc/ACKS
Dosyayı görüntüle @
2a99d5df
...
...
@@ -849,6 +849,7 @@ Alessandro Moura
Pablo Mouzo
Mher Movsisyan
Ruslan Mstoi
Valentina Mukhamedzhanova
Michael Mulich
Sape Mullender
Sjoerd Mullender
...
...
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