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
12dc230c
Kaydet (Commit)
12dc230c
authored
Mar 11, 2003
tarafından
Barry Warsaw
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
body_line_iterator(): Accept optional decode argument, pass through to
Message.get_payload().
üst
52b39f5b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
6 deletions
+12
-6
_compat21.py
Lib/email/_compat21.py
+6
-3
_compat22.py
Lib/email/_compat22.py
+6
-3
No files found.
Lib/email/_compat21.py
Dosyayı görüntüle @
12dc230c
...
...
@@ -37,11 +37,14 @@ def _isstring(obj):
# These two functions are imported into the Iterators.py interface module.
# The Python 2.2 version uses generators for efficiency.
def
body_line_iterator
(
msg
):
"""Iterate over the parts, returning string payloads line-by-line."""
def
body_line_iterator
(
msg
,
decode
=
False
):
"""Iterate over the parts, returning string payloads line-by-line.
Optional decode (default False) is passed through to .get_payload().
"""
lines
=
[]
for
subpart
in
msg
.
walk
():
payload
=
subpart
.
get_payload
()
payload
=
subpart
.
get_payload
(
decode
=
decode
)
if
_isstring
(
payload
):
for
line
in
StringIO
(
payload
)
.
readlines
():
lines
.
append
(
line
)
...
...
Lib/email/_compat22.py
Dosyayı görüntüle @
12dc230c
...
...
@@ -38,10 +38,13 @@ def _isstring(obj):
# These two functions are imported into the Iterators.py interface module.
# The Python 2.2 version uses generators for efficiency.
def
body_line_iterator
(
msg
):
"""Iterate over the parts, returning string payloads line-by-line."""
def
body_line_iterator
(
msg
,
decode
=
False
):
"""Iterate over the parts, returning string payloads line-by-line.
Optional decode (default False) is passed through to .get_payload().
"""
for
subpart
in
msg
.
walk
():
payload
=
subpart
.
get_payload
()
payload
=
subpart
.
get_payload
(
decode
=
decode
)
if
_isstring
(
payload
):
for
line
in
StringIO
(
payload
):
yield
line
...
...
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