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
0ebc5c96
Kaydet (Commit)
0ebc5c96
authored
Eki 01, 2002
tarafından
Barry Warsaw
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Docstring consistency with the updated .tex files.
üst
12272a2f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
5 deletions
+14
-5
Utils.py
Lib/email/Utils.py
+14
-5
No files found.
Lib/email/Utils.py
Dosyayı görüntüle @
0ebc5c96
...
...
@@ -221,12 +221,12 @@ def formatdate(timeval=None, localtime=False):
def
make_msgid
(
idstring
=
None
):
"""Returns a string suitable for RFC 2822 compliant Message-ID
:
, e.g:
"""Returns a string suitable for RFC 2822 compliant Message-ID, e.g:
<20020201195627.33539.96671@nightshade.la.mastaler.com>
Optional idstring if given is a string used to strengthen the
uniqueness of the
Message-ID, otherwise an empty string is use
d.
uniqueness of the
message i
d.
"""
timeval
=
time
.
time
()
utcdate
=
time
.
strftime
(
'
%
Y
%
m
%
d
%
H
%
M
%
S'
,
time
.
gmtime
(
timeval
))
...
...
@@ -286,19 +286,28 @@ def decode_rfc2231(s):
def
encode_rfc2231
(
s
,
charset
=
None
,
language
=
None
):
"""Encode string according to RFC 2231"""
"""Encode string according to RFC 2231.
If neither charset nor language is given, then s is returned as-is. If
charset is given but not language, the string is encoded using the empty
string for language.
"""
import
urllib
s
=
urllib
.
quote
(
s
,
safe
=
''
)
if
charset
is
None
and
language
is
None
:
return
s
else
:
if
language
is
None
:
language
=
''
return
"
%
s'
%
s'
%
s"
%
(
charset
,
language
,
s
)
rfc2231_continuation
=
re
.
compile
(
r'^(?P<name>\w+)\*((?P<num>[0-9]+)\*?)?$'
)
def
decode_params
(
params
):
"""Decode parameters list according to RFC 2231"""
"""Decode parameters list according to RFC 2231.
params is a sequence of 2-tuples containing (content type, string value).
"""
new_params
=
[]
# maps parameter's name to a list of continuations
rfc2231_params
=
{}
...
...
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