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
ce96d8b6
Kaydet (Commit)
ce96d8b6
authored
Eyl 22, 2004
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Bug #1030125: rfc822 __iter__ problem
Add iteration support to the Message class.
üst
c6646c09
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
0 deletions
+15
-0
rfc822.py
Lib/rfc822.py
+3
-0
test_rfc822.py
Lib/test/test_rfc822.py
+11
-0
NEWS
Misc/NEWS
+1
-0
No files found.
Lib/rfc822.py
Dosyayı görüntüle @
ce96d8b6
...
...
@@ -444,6 +444,9 @@ class Message:
"""Determine whether a message contains the named header."""
return
name
.
lower
()
in
self
.
dict
def
__iter__
(
self
):
return
iter
(
self
.
dict
)
def
keys
(
self
):
"""Get all of a message's header field names."""
return
self
.
dict
.
keys
()
...
...
Lib/test/test_rfc822.py
Dosyayı görüntüle @
ce96d8b6
...
...
@@ -176,6 +176,17 @@ class MessageTestCase(unittest.TestCase):
'foo'
,
[(
''
,
'guido@[132.151.1.21]'
)])
def
test_iter
(
self
):
m
=
rfc822
.
Message
(
StringIO
(
'Date: Wed, 13 Jan 1999 23:57:35 -0500
\n
'
'From: Guido van Rossum <guido@CNRI.Reston.VA.US>
\n
'
'To: "Guido van
\n
'
'
\t
: Rossum" <guido@python.org>
\n
'
'Subject: test2
\n
'
'
\n
'
'test2
\n
'
))
self
.
assertEqual
(
sorted
(
m
),
[
'date'
,
'from'
,
'subject'
,
'to'
])
def
test_rfc2822_phrases
(
self
):
# RFC 2822 (the update to RFC 822) specifies that dots in phrases are
# obsolete syntax, which conforming programs MUST recognize but NEVER
...
...
Misc/NEWS
Dosyayı görüntüle @
ce96d8b6
...
...
@@ -21,6 +21,7 @@ Extension modules
Library
-------
- rfc822 Messages now support iteration.
- The (undocumented) tarfile.Tarfile.membernames has been removed;
applications should use the getmember function.
...
...
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