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
f776e692
Kaydet (Commit)
f776e692
authored
Eyl 28, 2002
tarafından
Barry Warsaw
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Code cleanup and add docstrings.
üst
5bdb2bee
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
2 deletions
+17
-2
__init__.py
Lib/email/__init__.py
+17
-2
No files found.
Lib/email/__init__.py
Dosyayı görüntüle @
f776e692
...
...
@@ -27,18 +27,33 @@ __all__ = ['Charset',
]
try
:
True
,
False
except
NameError
:
True
=
1
False
=
0
# Some convenience routines. Don't import Parser and Message as side-effects
# of importing email since those cascadingly import most of the rest of the
# email package.
def
message_from_string
(
s
,
_class
=
None
,
strict
=
0
):
def
message_from_string
(
s
,
_class
=
None
,
strict
=
False
):
"""Parse a string into a Message object model.
Optional _class and strict are passed to the Parser constructor.
"""
from
email.Parser
import
Parser
if
_class
is
None
:
from
email.Message
import
Message
_class
=
Message
return
Parser
(
_class
,
strict
=
strict
)
.
parsestr
(
s
)
def
message_from_file
(
fp
,
_class
=
None
,
strict
=
0
):
def
message_from_file
(
fp
,
_class
=
None
,
strict
=
False
):
"""Read a file and parse its contents into a Message object model.
Optional _class and strict are passed to the Parser constructor.
"""
from
email.Parser
import
Parser
if
_class
is
None
:
from
email.Message
import
Message
...
...
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